diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-04 12:49:09 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-04 12:49:15 -0700 |
commit | ea73a6242446f33951e5daa342e827bef700b835 (patch) | |
tree | 041e0563189ef7502ba61e96aeb344ce927c946d /cmd/sbc_harness/main.c | |
parent | 3c81186daf97cf7011fd2806dfd0bc3b875e92f3 (diff) |
wip dhcp
Diffstat (limited to 'cmd/sbc_harness/main.c')
-rw-r--r-- | cmd/sbc_harness/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c index b9c5330..610725f 100644 --- a/cmd/sbc_harness/main.c +++ b/cmd/sbc_harness/main.c @@ -15,6 +15,7 @@ #include <libhw/w5500.h> #include <libmisc/hash.h> #include <libusb/usb_common.h> +#include <libdhcp/client.h> #include "usb_keyboard.h" @@ -80,8 +81,9 @@ 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_client_cr, NULL); + coroutine_add(dhcp_client_cr, NULL); /* event loop *********************************************************/ + printf("main\n"); coroutine_main(); } |