summaryrefslogtreecommitdiff
path: root/cmd/sbc_harness
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/sbc_harness')
-rw-r--r--cmd/sbc_harness/config/config.h4
-rw-r--r--cmd/sbc_harness/main.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h
index 6d2ea89..daa01dd 100644
--- a/cmd/sbc_harness/config/config.h
+++ b/cmd/sbc_harness/config/config.h
@@ -25,6 +25,8 @@
#define CONFIG_W5500_LOCAL_PORT_MIN 32768
#define CONFIG_W5500_LOCAL_PORT_MAX 60999
+#define CONFIG_W5500_DEBUG 1 /* bool */
+
/* 9P *************************************************************************/
#define CONFIG_9P_PORT 564
@@ -62,7 +64,7 @@
/* DHCP ***********************************************************************/
#define CONFIG_DHCP_CAN_RECV_UNICAST_IP_WITHOUT_IP 0 /* bool */
-#define CONFIG_DHCP_DEBUG 0 /* bool */
+#define CONFIG_DHCP_DEBUG 1 /* bool */
#define CONFIG_DHCP_OPT_SIZE 312 /* minimum of 312 */
#define CONFIG_DHCP_SELECTING_NS (5*NS_PER_S)
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c
index d665fb3..fb4b696 100644
--- a/cmd/sbc_harness/main.c
+++ b/cmd/sbc_harness/main.c
@@ -111,6 +111,8 @@ COROUTINE init_cr(void *) {
int main() {
stdio_uart_init();
+ /* char *hdr = "=" * (80-strlen("info : MAIN: ")); */
+ infof("===================================================================");
coroutine_add("init", init_cr, NULL);
coroutine_main();
}