diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 12:12:26 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 12:12:26 -0700 |
commit | 0fca65efdd2417fcbdd4697923dd3dd8841fd00e (patch) | |
tree | f007647226c27e7778353510bfbd15e774a68a7a | |
parent | 76cef6c7dd3c42f1511486800760d78357624edc (diff) |
main.c: Give the DHCP process more stack
-rw-r--r-- | cmd/sbc_harness/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c index 97751a7..ec44cc4 100644 --- a/cmd/sbc_harness/main.c +++ b/cmd/sbc_harness/main.c @@ -90,7 +90,7 @@ int main() { usb_keyboard_rpc_t keyboard_chan = {0}; coroutine_add(usb_keyboard_cr, &keyboard_chan); //coroutine_add(hello_world_cr, &keyboard_chan); - coroutine_add(dhcp_cr, &dev_w5500); + coroutine_add_with_stack_size(3*1024, dhcp_cr, &dev_w5500); /* event loop *********************************************************/ printf("main\n"); |