diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 13:19:09 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 13:23:33 -0700 |
commit | 5be7b1ebd1ab2bce1d53552b627fe55f425bdb38 (patch) | |
tree | 890cda05f97bac976c2120ade2df79408bd40c82 /cmd/sbc_harness/main.c | |
parent | aec7a1209a7c2314acc5703a94509a403c796444 (diff) |
Fuss with compile-time config
Diffstat (limited to 'cmd/sbc_harness/main.c')
-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 8ee2e7d..d015259 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_with_stack_size(3*1024, dhcp_cr, &dev_w5500); + coroutine_add_with_stack_size(4*1024, dhcp_cr, &dev_w5500); /* event loop *********************************************************/ coroutine_main(); |