Kconfig.misc 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. menu "Misc"
  4. config LOG_DOMAIN_ID
  5. int "Domain ID"
  6. depends on !LOG_MINIMAL
  7. default 0
  8. range 0 7
  9. help
  10. In multicore system each application/core must have unique domain ID.
  11. config LOG_CMDS
  12. bool "Enable shell commands"
  13. depends on SHELL
  14. depends on !LOG_FRONTEND && !LOG_MINIMAL
  15. default y if SHELL
  16. config LOG_TEST_CLEAR_MESSAGE_SPACE
  17. bool "Clear message after allocation"
  18. default y
  19. depends on ZTEST
  20. depends on LOG2
  21. help
  22. Used in testing to simplify message comparision if message contains
  23. paddings.
  24. config LOG2_USE_VLA
  25. bool "Using variable length arrays"
  26. default y if !MISRA_SANE
  27. help
  28. Using VLA slightly decreases stack usage in some cases it may not be
  29. supported. Note that VLA are used for arrays which size is resolved at
  30. compile time so at runtime arrays have fixed size.
  31. config LOG2_ALWAYS_RUNTIME
  32. bool "Always use runtime message creation (v2)"
  33. default y if NO_OPTIMIZATIONS
  34. help
  35. If enabled, runtime method is always used for message creation. Static
  36. creation relies on compiler being able to optimize and remove code
  37. based on information known at compile time. It is recommended to
  38. enable this option when optimization is disabled because some compilers
  39. (seen on arm_cortex_m and x86) were using unrealistic amount of stack
  40. for dead code. Option applies to v1 as well because distinction
  41. between versions is done by the compiler.
  42. config LOG2_FMT_SECTION
  43. bool "Keep log strings in dedicated section"
  44. help
  45. When enabled, logs are kept in dedicated memory section. It allows
  46. removing strings from final binary and should be used for dictionary
  47. logging.
  48. endmenu