diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-26 14:26:28 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-02 13:30:55 -0700 |
commit | 8dc86e5ec58ec94f7ea8227ee008ded202c4204f (patch) | |
tree | 02ab6704d2ad5698c45981162cc2c192ebdee9db /cmd/sbc_harness | |
parent | 0110cae147d8b1749b4bd5763620ec73d5296a76 (diff) |
libhw: Add rp2040_gpioirq, use it
Diffstat (limited to 'cmd/sbc_harness')
-rw-r--r-- | cmd/sbc_harness/config/config.h | 7 |
1 files changed, 1 insertions, 6 deletions
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 @@ -12,11 +12,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() */ ) |