feat: 保存已验证的CH390网络打通基线

This commit is contained in:
2026-04-17 07:09:55 +08:00
parent 59eecf428f
commit 6aba77df9a
44 changed files with 6428 additions and 3372 deletions
+8 -16
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)10240)
#define configTOTAL_HEAP_SIZE ((size_t)14848)
#define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0
@@ -152,14 +152,6 @@ standard names. */
/* USER CODE BEGIN Defines */
/* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */
/* lwIP sys_arch compatibility macros */
#define sys_arch_protect() vPortEnterCritical()
#define sys_arch_unprotect(x) vPortExitCritical()
#define sys_now() ((uint32_t)xTaskGetTickCount())
#define SYS_ARCH_DECL_PROTECT(lev) uint32_t lev
#define SYS_ARCH_PROTECT(lev) (lev) = vPortEnterCritical()
#define SYS_ARCH_UNPROTECT(lev) vPortExitCritical()
/* Application task priorities (higher number = higher priority) */
#define TASK_PRIORITY_TCPIP 6
#define TASK_PRIORITY_NET_POLL 5
@@ -173,19 +165,19 @@ standard names. */
/* Application task stack sizes (in words) */
#define TASK_STACK_TCPIP 512
#define TASK_STACK_NET_POLL 384
#define TASK_STACK_TCP_SERVER 384
#define TASK_STACK_TCP_CLIENT 256
#define TASK_STACK_UART_RX 384
#define TASK_STACK_TCP_SERVER 320
#define TASK_STACK_TCP_CLIENT 224
#define TASK_STACK_UART_RX 320
#define TASK_STACK_ROUTE 512
#define TASK_STACK_CONFIG 256
#define TASK_STACK_CONFIG 384
#define TASK_STACK_DEFAULT 128
/* Route message pool for zero-copy inter-task communication */
#define ROUTE_MSG_POOL_SIZE 8
#define ROUTE_MSG_POOL_SIZE 6
#define ROUTE_MSG_MAX_PAYLOAD 512
/* lwIP thread name for tcpip_thread */
#define TCPIP_THREAD_NAME "tcpip"
#define DIAG_TASK_ISOLATION 1
/* USER CODE END Defines */
#endif /* FREERTOS_CONFIG_H */