Difference between revisions of "Modular ESP Firmware - Baseline - Work Environment"

From The TinkerNet Wiki
Jump to navigation Jump to search
(Created page with "== platformio.ini == <syntaxhighlight lang="ini" line="1"> [env:esp8266] platform = espressif8266 board = esp07 ; Pretty much ANY esp8266 board is an esp07 as far...")
 
Line 4: Line 4:
 
[env:esp8266]
 
[env:esp8266]
 
platform = espressif8266
 
platform = espressif8266
board = esp07           ; Pretty much ANY esp8266 board is an esp07 as far as Platformio is concerned
+
board = esp07
 +
; Pretty much ANY esp8266 board is an esp07 as far as Platformio is concerned
 
framework = arduino
 
framework = arduino
  

Revision as of 12:02, 2 January 2021

platformio.ini

1 [env:esp8266]
2 platform = espressif8266
3 board = esp07
4 ; Pretty much ANY esp8266 board is an esp07 as far as Platformio is concerned
5 framework = arduino
6 
7 monitor_speed = 115200
8 
9 build_flags = -D DEBUG