Kconfig.mode 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. choice LOG_MODE
  4. prompt "Mode"
  5. default LOG_MODE_DEFERRED
  6. config LOG_MODE_DEFERRED
  7. bool "Deferred logging"
  8. select MPSC_PBUF
  9. help
  10. Log messages are buffered and processed later. This mode has the
  11. least impact on the application. Time consuming processing is
  12. deferred to the known context.
  13. config LOG2_MODE_DEFERRED
  14. bool "Deferred logging v2"
  15. select MPSC_PBUF
  16. select LOG2
  17. config LOG2_MODE_IMMEDIATE
  18. bool "Synchronous v2"
  19. select LOG2
  20. select MPSC_PBUF
  21. help
  22. When enabled log is processed in the context of the call. It impacts
  23. performance of the system since time consuming operations are
  24. performed in the context of the log entry (e.g. high priority
  25. interrupt).Logger backends must support exclusive access to work
  26. flawlessly in that mode because one log operation can be interrupted
  27. by another one in the higher priority context.
  28. config LOG_MODE_IMMEDIATE
  29. bool "Synchronous"
  30. select MPSC_PBUF
  31. help
  32. When enabled log is processed in the context of the call. It impacts
  33. performance of the system since time consuming operations are
  34. performed in the context of the log entry (e.g. high priority
  35. interrupt).Logger backends must support exclusive access to work
  36. flawlessly in that mode because one log operation can be interrupted
  37. by another one in the higher priority context.
  38. config LOG_MODE_MINIMAL
  39. bool "Minimal-footprint"
  40. imply PRINTK
  41. help
  42. Enable minimal logging implementation. This has very little footprint
  43. overhead on top of the printk() implementation for standard
  44. logging macros. Hexdump macros are also supported, with a small
  45. amount of code pulled in if used. Build time filtering is supported,
  46. but not runtime filtering. There are no timestamps, prefixes,
  47. colors, or asynchronous logging, and all messages are simply
  48. sent to printk().
  49. config LOG_FRONTEND
  50. bool "Frontend"
  51. help
  52. When enabled, logs are redirected to a custom frontend instead
  53. of being processed by the logger. In this mode runtime filtering and
  54. multiple backends are not used.
  55. endchoice
  56. config LOG2
  57. bool
  58. config LOG_IMMEDIATE
  59. bool
  60. default y if LOG_MODE_IMMEDIATE
  61. default y if LOG2_MODE_IMMEDIATE
  62. config LOG_MINIMAL
  63. bool
  64. imply PRINTK
  65. default y if LOG_MODE_MINIMAL