esp-idf/components/app_trace/Kconfig

234 lines
7.8 KiB
Plaintext
Raw Normal View History

menu "Application Level Tracing"
2019-09-13 08:49:11 -04:00
choice APPTRACE_DESTINATION
2018-12-06 09:08:18 -05:00
prompt "Data Destination"
2019-09-13 08:49:11 -04:00
default APPTRACE_DEST_NONE
2018-12-06 09:08:18 -05:00
help
Select destination for application trace: JTAG or none (to disable).
2018-12-06 09:08:18 -05:00
config APPTRACE_DEST_JTAG
bool "JTAG"
select APPTRACE_DEST_TRAX if IDF_TARGET_ARCH_XTENSA
select APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE
2019-09-13 08:49:11 -04:00
select APPTRACE_ENABLE
2019-09-13 08:49:11 -04:00
config APPTRACE_DEST_NONE
2018-12-06 09:08:18 -05:00
bool "None"
endchoice
config APPTRACE_DEST_TRAX
2018-12-06 09:08:18 -05:00
bool
2021-10-22 16:32:36 -04:00
depends on IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX
select ESP32_MEMMAP_TRACEMEM
select ESP32S2_MEMMAP_TRACEMEM
2021-10-22 16:32:36 -04:00
select ESP32S3_MEMMAP_TRACEMEM
select ESP32_MEMMAP_TRACEMEM_TWOBANKS
select ESP32S2_MEMMAP_TRACEMEM_TWOBANKS
2021-10-22 16:32:36 -04:00
select ESP32S3_MEMMAP_TRACEMEM_TWOBANKS
2018-12-06 09:08:18 -05:00
default n
help
Enables/disable TRAX tracing HW.
config APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE
bool
default n
help
Enables/disable swapping memory buffers tracing protocol.
config APPTRACE_ENABLE
bool
default n
2018-12-06 09:08:18 -05:00
help
Enables/disable application tracing module.
2019-09-13 08:49:11 -04:00
config APPTRACE_LOCK_ENABLE
2018-12-06 09:08:18 -05:00
bool
default !APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
help
Enables/disable application tracing module internal sync lock.
2019-09-13 08:49:11 -04:00
config APPTRACE_ONPANIC_HOST_FLUSH_TMO
2018-12-06 09:08:18 -05:00
int "Timeout for flushing last trace data to host on panic"
2019-09-13 08:49:11 -04:00
depends on APPTRACE_ENABLE
2018-12-06 09:08:18 -05:00
range -1 5000
default -1
help
Timeout for flushing last trace data to host in case of panic. In ms.
Use -1 to disable timeout and wait forever.
2019-09-13 08:49:11 -04:00
config APPTRACE_POSTMORTEM_FLUSH_THRESH
2018-12-06 09:08:18 -05:00
int "Threshold for flushing last trace data to host on panic"
depends on APPTRACE_ENABLE
2018-12-06 09:08:18 -05:00
range 0 16384
default 0
help
Threshold for flushing last trace data to host on panic in post-mortem mode.
This is minimal amount of data needed to perform flush. In bytes.
config APPTRACE_BUF_SIZE
int "Size of the apptrace buffer"
depends on APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE && !APPTRACE_DEST_TRAX
default 16384
help
2021-05-28 17:20:02 -04:00
Size of the memory buffer for trace data in bytes.
2019-09-13 08:49:11 -04:00
config APPTRACE_PENDING_DATA_SIZE_MAX
2018-12-06 09:08:18 -05:00
int "Size of the pending data buffer"
depends on APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE
2018-12-06 09:08:18 -05:00
default 0
help
Size of the buffer for events in bytes. It is useful for buffering events from
the time critical code (scheduler, ISRs etc). If this parameter is 0 then
events will be discarded when main HW buffer is full.
menu "FreeRTOS SystemView Tracing"
2019-09-13 08:49:11 -04:00
depends on APPTRACE_ENABLE
config APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
bool "SystemView Tracing Enable"
2019-09-13 08:49:11 -04:00
depends on APPTRACE_ENABLE
2018-12-06 09:08:18 -05:00
default n
help
Enables supporrt for SEGGER SystemView tracing functionality.
choice APPTRACE_SV_TS_SOURCE
2018-12-06 09:08:18 -05:00
prompt "Timer to use as timestamp source"
depends on APPTRACE_SV_ENABLE
default APPTRACE_SV_TS_SOURCE_CCOUNT if FREERTOS_UNICORE && !PM_ENABLE && !IDF_TARGET_ESP32C3
default APPTRACE_SV_TS_SOURCE_GPTIMER if !FREERTOS_UNICORE && !PM_ENABLE && !IDF_TARGET_ESP32C3
default APPTRACE_SV_TS_SOURCE_ESP_TIMER if PM_ENABLE || IDF_TARGET_ESP32C3
2018-12-06 09:08:18 -05:00
help
SystemView needs to use a hardware timer as the source of timestamps
when tracing. This option selects the timer for it.
config APPTRACE_SV_TS_SOURCE_CCOUNT
2018-12-06 09:08:18 -05:00
bool "CPU cycle counter (CCOUNT)"
depends on FREERTOS_UNICORE && !PM_ENABLE && !IDF_TARGET_ESP32C3
2018-12-06 09:08:18 -05:00
config APPTRACE_SV_TS_SOURCE_GPTIMER
bool "General Purpose Timer (Timer Group)"
depends on !PM_ENABLE && !IDF_TARGET_ESP32C3
2018-12-06 09:08:18 -05:00
config APPTRACE_SV_TS_SOURCE_ESP_TIMER
2018-12-06 09:08:18 -05:00
bool "esp_timer high resolution timer"
endchoice
config APPTRACE_SV_MAX_TASKS
int "Maximum supported tasks"
depends on APPTRACE_SV_ENABLE
range 1 64
default 16
help
Configures maximum supported tasks in sysview debug
config APPTRACE_SV_BUF_WAIT_TMO
2018-12-12 12:35:17 -05:00
int "Trace buffer wait timeout"
depends on APPTRACE_SV_ENABLE
2018-12-12 12:35:17 -05:00
default 500
help
Configures timeout (in us) to wait for free space in trace buffer.
Set to -1 to wait forever and avoid lost events.
config APPTRACE_SV_EVT_OVERFLOW_ENABLE
2018-12-06 09:08:18 -05:00
bool "Trace Buffer Overflow Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Trace Buffer Overflow" event.
config APPTRACE_SV_EVT_ISR_ENTER_ENABLE
2018-12-06 09:08:18 -05:00
bool "ISR Enter Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "ISR Enter" event.
config APPTRACE_SV_EVT_ISR_EXIT_ENABLE
2018-12-06 09:08:18 -05:00
bool "ISR Exit Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "ISR Exit" event.
config APPTRACE_SV_EVT_ISR_TO_SCHED_ENABLE
2018-12-06 09:08:18 -05:00
bool "ISR Exit to Scheduler Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "ISR to Scheduler" event.
config APPTRACE_SV_EVT_TASK_START_EXEC_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Start Execution Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Start Execution" event.
config APPTRACE_SV_EVT_TASK_STOP_EXEC_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Stop Execution Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Stop Execution" event.
config APPTRACE_SV_EVT_TASK_START_READY_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Start Ready State Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Start Ready State" event.
config APPTRACE_SV_EVT_TASK_STOP_READY_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Stop Ready State Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Stop Ready State" event.
config APPTRACE_SV_EVT_TASK_CREATE_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Create Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Create" event.
config APPTRACE_SV_EVT_TASK_TERMINATE_ENABLE
2018-12-06 09:08:18 -05:00
bool "Task Terminate Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Task Terminate" event.
config APPTRACE_SV_EVT_IDLE_ENABLE
2018-12-06 09:08:18 -05:00
bool "System Idle Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "System Idle" event.
config APPTRACE_SV_EVT_TIMER_ENTER_ENABLE
2018-12-06 09:08:18 -05:00
bool "Timer Enter Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Timer Enter" event.
config APPTRACE_SV_EVT_TIMER_EXIT_ENABLE
2018-12-06 09:08:18 -05:00
bool "Timer Exit Event"
depends on APPTRACE_SV_ENABLE
2018-12-06 09:08:18 -05:00
default y
help
Enables "Timer Exit" event.
endmenu
2019-09-13 08:49:11 -04:00
config APPTRACE_GCOV_ENABLE
2018-12-06 09:08:18 -05:00
bool "GCOV to Host Enable"
depends on APPTRACE_ENABLE && !APPTRACE_SV_ENABLE
2019-09-13 08:49:11 -04:00
select ESP_DEBUG_STUBS_ENABLE
default n
2018-12-06 09:08:18 -05:00
help
Enables support for GCOV data transfer to host.
endmenu