fix: preserve current runtime debug state

This commit is contained in:
2026-04-18 05:29:11 +08:00
parent 6aba77df9a
commit cd48a8af68
11 changed files with 138 additions and 265 deletions
+7 -7
View File
@@ -65,7 +65,7 @@
#define configTICK_RATE_HZ ((TickType_t)1000)
#define configMAX_PRIORITIES ( 7 )
#define configMINIMAL_STACK_SIZE ((uint16_t)128)
#define configTOTAL_HEAP_SIZE ((size_t)14848)
#define configTOTAL_HEAP_SIZE ((size_t)15360)
#define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0
@@ -165,18 +165,18 @@ standard names. */
/* Application task stack sizes (in words) */
#define TASK_STACK_TCPIP 512
#define TASK_STACK_NET_POLL 384
#define TASK_STACK_TCP_SERVER 320
#define TASK_STACK_TCP_CLIENT 224
#define TASK_STACK_UART_RX 320
#define TASK_STACK_TCP_SERVER 384
#define TASK_STACK_TCP_CLIENT 384
#define TASK_STACK_UART_RX 256
#define TASK_STACK_ROUTE 512
#define TASK_STACK_CONFIG 384
#define TASK_STACK_CONFIG 256
#define TASK_STACK_DEFAULT 128
/* Route message pool for zero-copy inter-task communication */
#define ROUTE_MSG_POOL_SIZE 6
#define ROUTE_MSG_POOL_SIZE 8
#define ROUTE_MSG_MAX_PAYLOAD 512
#define DIAG_TASK_ISOLATION 1
#define DIAG_TASK_ISOLATION 0
/* USER CODE END Defines */