Kconfig 451 B

12345678910111213
  1. menu "FreeRTOS"
  2. config FREERTOS_MAX_TASK_NAME_LEN
  3. int "Maximum task name length"
  4. range 1 256
  5. default 16
  6. help
  7. Changes the maximum task name length. Each task allocated will
  8. include this many bytes for a task name. Using a shorter value
  9. saves a small amount of RAM, a longer value allows more complex
  10. names.
  11. For most uses, the default of 16 is OK.
  12. endmenu