From 8dc86e5ec58ec94f7ea8227ee008ded202c4204f Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 26 Feb 2025 14:26:28 -0700 Subject: libhw: Add rp2040_gpioirq, use it --- cmd/sbc_harness/config/config.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cmd/sbc_harness') diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h index b569cd5..f9c7df2 100644 --- a/cmd/sbc_harness/config/config.h +++ b/cmd/sbc_harness/config/config.h @@ -11,11 +11,6 @@ /* W5500 **********************************************************************/ -/** - * How many W5500 chips we have. - */ -#define CONFIG_W5500_NUM 1 - /** * When allocating an arbitrary local port, what range should it be * allocated from? @@ -106,7 +101,7 @@ extern const size_t CONFIG_COROUTINE_STACK_SIZE_w5500_irq_cr; #define CONFIG_COROUTINE_NUM ( \ 1 /* usb_common */ + \ 1 /* usb_keyboard */ + \ - CONFIG_W5500_NUM /* irq handler */ + \ + 1 /* W5500 irq handler */ + \ _CONFIG_9P_NUM_SOCKS /* 9P accept()+read() */ + \ (CONFIG_9P_SRV_MAX_REQS*_CONFIG_9P_NUM_SOCKS) /* 9P work+write() */ ) -- cgit v1.2.3-2-g168b