[go: up one dir, main page]

Skip to content

Commit

Permalink
增大中断线程栈避免64位下栈溢出
Browse files Browse the repository at this point in the history
  • Loading branch information
heyuanjie87 committed Nov 20, 2020
1 parent fb40f9b commit 6130a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wiz.c
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ static int wiz_interrupt_init(rt_base_t isr_pin)
}

/* create WIZnet SPI RX thread */
tid = rt_thread_create("wiz", wiz_data_thread_entry, RT_NULL, 512, RT_THREAD_PRIORITY_MAX / 6, 20);
tid = rt_thread_create("wiz", wiz_data_thread_entry, RT_NULL, 1024, RT_THREAD_PRIORITY_MAX / 6, 20);
if (tid != RT_NULL)
{
rt_thread_startup(tid);
Expand Down

0 comments on commit 6130a27

Please sign in to comment.