-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
44 lines (38 loc) · 998 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
44
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
# The upload speed below (921600) has worked fine for all modules I tested. If you have upload issues,
# try reducing to 115200.
[env:esp12e]
platform = espressif
framework = arduino
board = esp12e
upload_speed = 921600
#upload_port = /dev/tty.SLAB_USBtoUART
build_flags = -Wl,-Tesp8266.flash.4m.ld
extra_script = esp_extra.py
[env:esp01_1m]
platform = espressif
framework = arduino
board = esp01_1m
upload_speed = 921600
extra_script = esp_extra.py
[env:esp01]
platform = espressif
framework = arduino
board = esp01
upload_speed = 921600
extra_script = esp_extra.py