исправлена опечатка

This commit is contained in:
Dmitry Borisenko
2020-12-30 17:02:11 +01:00
parent 7eac8dde3b
commit 0fa7876b80
3 changed files with 6 additions and 13 deletions

View File

@@ -5,3 +5,5 @@
//#ifdef esp32_4mb
//#pragma message STR(esp32_4mb)
//#endif
//Serial.println(STR(esp32_4mb));

View File

@@ -11,7 +11,7 @@
;Please use one of definition:
;esp8266_1mb , esp8266_4mb , esp32_4mb
[platformio]
default_envs = esp32_4mb
default_envs = esp8266_4mb
@@ -32,7 +32,7 @@ lib_deps_internal =
[env:esp8266_4mb]
build_flags = -Desp8266_1mb="esp8266_4mb"
build_flags = -Desp8266_4mb="esp8266_4mb"
framework = arduino
board = nodemcuv2
board_build.ldscript = eagle.flash.4m1m.ld

View File

@@ -6,14 +6,5 @@
void testsPerform() {
Serial.println("====some tests section====");
#ifdef esp32_4mb
Serial.println("esp32_4mb defined");
#endif
#ifdef esp8266_1mb
Serial.println("esp32_4mb defined");
#endif
//Serial.println(STR(esp32_4mb));
Serial.println("==========end============");
}