diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-24 14:16:35 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-24 14:16:35 -0600 |
commit | d282266beb71bfb9b21cf00f3025c01df7dd8e4d (patch) | |
tree | 16e5bd9f909148f68e960bbba36b55e94ea22e5e /main.c | |
parent | d559c50a98e65ce889411b46ab108b392907e0f0 (diff) |
rename cr_chan to cr_rpc
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -17,11 +17,11 @@ COROUTINE hello_world_cr(void *_chan) { const char *msg = "Hello world!\n"; - usb_keyboard_chan_t *chan = _chan; + usb_keyboard_rpc_t *chan = _chan; cr_begin(); for (size_t i = 0;; i = (i+1) % strlen(msg)) { - cr_chan_req(chan, NULL, msg[i]); + cr_rpc_req(chan, NULL, msg[i]); } cr_end(); @@ -39,7 +39,7 @@ int main() { /* set up coroutines */ coroutine_add(usb_common_cr, NULL); - usb_keyboard_chan_t keyboard_chan = {0}; + usb_keyboard_rpc_t keyboard_chan = {0}; coroutine_add(usb_keyboard_cr, &keyboard_chan); coroutine_add(hello_world_cr, &keyboard_chan); |