expand mq test stack size to fix overstack problem during utest.

Signed-off-by: fan.ji <fan.ji@weiheng-tech.com>
This commit is contained in:
fan.ji 2022-10-27 10:38:23 +08:00 committed by Man, Jianting (Meco)
parent dff06ff603
commit b1beed20ae
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ static rt_uint8_t mq_buf[(MSG_SIZE + 4) * MAX_MSGS];
static struct rt_thread mq_send_thread;
static struct rt_thread mq_recv_thread;
static rt_uint8_t mq_send_stack[512];
static rt_uint8_t mq_recv_stack[512];
static rt_uint8_t mq_send_stack[1024];
static rt_uint8_t mq_recv_stack[1024];
static struct rt_event finish_e;
#define MQSEND_FINISH 0x01