make default color white text on black background
This commit is contained in:
2023-12-05 20:06:35 +01:00
parent 6ee9e305cc
commit f3818e805a

View File

@@ -9,8 +9,8 @@
#define MAX_CMD_LEN 50
static const char* TAG = "tcp_cmd";
static uint32_t color_txt = 0xff000000; // Store text color
static uint32_t color_bg = 0xff000000; // Store background color
static uint32_t color_txt = 0xffffffff; // Store text color
static uint32_t color_bg = 0xff000000; // Store background color
static void tcp_cmd_write(struct tcp_pcb* pcb, const char* str);
static void tcp_cmd_print_header(struct tcp_pcb* pcb);