From ea57b1496a2e87d3977a31a29a4cf7d63216f008 Mon Sep 17 00:00:00 2001 From: Jochen Groppe Date: Sun, 5 Nov 2017 17:12:04 +0100 Subject: [PATCH] fix NodeMCU-32S .build.board property The .build.board=xx proptery is used for generating a macro named "ARDUINO_xxx". C macro names should never have a "-" sign. * current: ARDUINO_NodeMCU-32S * should be: ARDUINO_=NodeMCU_32S --- boards.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards.txt b/boards.txt index b42d5e6046c..d461ad0ea05 100644 --- a/boards.txt +++ b/boards.txt @@ -830,7 +830,7 @@ nodemcu-32s.serial.disableRTS=true nodemcu-32s.build.mcu=esp32 nodemcu-32s.build.core=esp32 nodemcu-32s.build.variant=nodemcu-32s -nodemcu-32s.build.board=NodeMCU-32S +nodemcu-32s.build.board=NodeMCU_32S nodemcu-32s.build.f_cpu=240000000L nodemcu-32s.build.flash_mode=dio