summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-12 12:12:26 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-12 12:12:26 -0700
commit0fca65efdd2417fcbdd4697923dd3dd8841fd00e (patch)
treef007647226c27e7778353510bfbd15e774a68a7a
parent76cef6c7dd3c42f1511486800760d78357624edc (diff)
main.c: Give the DHCP process more stack
-rw-r--r--cmd/sbc_harness/main.c2
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");