summaryrefslogtreecommitdiff
path: root/cmd/sbc_harness/config/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/sbc_harness/config/config.h')
-rw-r--r--cmd/sbc_harness/config/config.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h
index b569cd5..fd089b1 100644
--- a/cmd/sbc_harness/config/config.h
+++ b/cmd/sbc_harness/config/config.h
@@ -9,12 +9,11 @@
#include <stddef.h> /* for size_t */
-/* W5500 **********************************************************************/
+/* RP2040 *********************************************************************/
-/**
- * How many W5500 chips we have.
- */
-#define CONFIG_W5500_NUM 1
+#define CONFIG_RP2040_SPI_DEBUG 1 /* bool */
+
+/* W5500 **********************************************************************/
/**
* When allocating an arbitrary local port, what range should it be
@@ -27,13 +26,12 @@
#define CONFIG_W5500_LOCAL_PORT_MIN 32768
#define CONFIG_W5500_LOCAL_PORT_MAX 60999
-#define CONFIG_W5500_DEBUG 1 /* bool */
-
+#define CONFIG_W5500_VALIDATE_SPI 1 /* bool */
+#define CONFIG_W5500_DEBUG 0 /* bool */
#define CONFIG_W5500_LL_DEBUG 0 /* bool */
/* 9P *************************************************************************/
-#define CONFIG_9P_PORT LIB9P_DEFAULT_PORT_9FS
/**
* This max-msg-size is sized so that a Twrite message can return
* 8KiB of data.
@@ -106,7 +104,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() */ )