From 6fb97bdf6dbcfd795304d36eb6158506fcfe9e31 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 27 Oct 2016 17:32:35 -0500 Subject: [PATCH] Update config.h Changed flashconfig.telnet_port to unsigned 16bit integer. --- esp-link/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp-link/config.h b/esp-link/config.h index 2b1f93e..2f5aede 100644 --- a/esp-link/config.h +++ b/esp-link/config.h @@ -41,7 +41,7 @@ typedef struct { int8_t data_bits; int8_t parity; int8_t stop_bits; - uint8_t telnet_port1, // Telnet port settings + uint16_t telnet_port1, // Telnet port settings telnet_port2; } FlashConfig; extern FlashConfig flashConfig;