From ea73a6242446f33951e5daa342e827bef700b835 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 4 Nov 2024 12:49:09 -0700 Subject: wip dhcp --- cmd/sbc_harness/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cmd/sbc_harness/main.c') 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 #include #include +#include #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(); } -- cgit v1.2.3-2-g168b