diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-20 23:59:09 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-21 10:33:25 -0700 |
commit | 3d5cb59006cf393a97ad3f87ef64fb258fd79ce9 (patch) | |
tree | e6514b42dca43dfea860a32da6c2d748ca9e2719 /cmd | |
parent | bec776463f76e0cc3f38df8571c32984a47e8b74 (diff) |
cmd/sbc_harness: Comment out the hello-world keyboard generator
Diffstat (limited to 'cmd')
-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 c45054b..69df077 100644 --- a/cmd/sbc_harness/main.c +++ b/cmd/sbc_harness/main.c @@ -125,6 +125,7 @@ static lo_interface lib9p_srv_file get_root(struct lib9p_srv_ctx *LM_UNUSED(ctx) /* Code ***********************************************************************/ +/* static COROUTINE hello_world_cr(void *_chan) { const char *msg = "Hello world!\n"; usb_keyboard_rpc_t *chan = _chan; @@ -140,6 +141,7 @@ static COROUTINE hello_world_cr(void *_chan) { cr_end(); } +*/ struct { struct rp2040_hwspi dev_spi; @@ -218,7 +220,7 @@ COROUTINE init_cr(void *) { /* set up coroutines **************************************************/ coroutine_add("usb_common", usb_common_cr, NULL); coroutine_add("usb_keyboard", usb_keyboard_cr, &globals.keyboard_chan); - coroutine_add("hello_world", hello_world_cr, &globals.keyboard_chan); + //coroutine_add("hello_world", hello_world_cr, &globals.keyboard_chan); coroutine_add_with_stack_size(4*1024, "dhcp", dhcp_cr, NULL); for (int i = 0; i < _CONFIG_9P_NUM_SOCKS; i++) { char name[] = {'r', 'e', 'a', 'd', '-', hexdig[i], '\0'}; |