Jan Breuer
2013-11-07 827e7d6b70828c51664cfa68ace5029da3f1cf1c
Update FreeRTOS-LwIP example with nown stack size
1个文件已修改
3 ■■■■ 已修改文件
examples/test-LwIP-netconn/scpi_server.c 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
examples/test-LwIP-netconn/scpi_server.c
@@ -53,6 +53,7 @@
#define CONTROL_PORT 5026
#define SCPI_THREAD_PRIO (tskIDLE_PRIORITY + 2)
#define SCPI_THREAD_STACKSIZE (512)
#define SCPI_MSG_TIMEOUT                0
#define SCPI_MSG_TEST                   1
@@ -410,5 +411,5 @@
}
void scpi_server_init(void) {
    sys_thread_new("SCPI", scpi_server_thread, NULL, 2 * DEFAULT_THREAD_STACKSIZE, SCPI_THREAD_PRIO);
    sys_thread_new("SCPI", scpi_server_thread, NULL, SCPI_THREAD_STACKSIZE, SCPI_THREAD_PRIO);
}