-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
43 lines (39 loc) · 956 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = nodemcuv2
workspace_dir = esp/
include_dir = esp/inc/
src_dir = esp/src/
[env:nodemcuv2]
platform = espressif8266
framework = arduino
board = nodemcuv2
build_flags =
-DESP8266
-DESP8266_NODEMCU
-DDEBUG_ESP_CORE
-DDEBUG_ESP_WIFI
-DDEBUG_ESP_HTTP_UPDATE
-DDEBUG_ESP_UPDATER
-DDEBUG_ESP_OTA
-DDEBUG_ESP_PORT=Serial
; -DDEBUG_ESP_OOM -include "umm_malloc/umm_malloc_cfg.h"
-Wall
-Wextra
monitor_speed = 115200
[env:uno]
platform = atmelavr
board = uno
board_build.mcu = atmega328p
build_flags =
-DARDUINO
-DARDUINO_UNO
-Wall
-Wextra