forked from QuickSander/ArduinoHttpServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
executable file
·37 lines (33 loc) · 1.17 KB
/
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
# Created by Sander van Woensel on 29-01-16.
# Copyright (c) 2016 Sander van Woensel. All rights reserved.
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
[platformio]
# Since we desire to integrate with Arduino (and the way it likes its directory
# structure), point source directory to the directory containing an example with
# loop() and setup() and the lib directory to the directory Arduino stores its
# libraries in. This way, PlatformIO will find this very library via the Arduino
# library directory.
src_dir = examples/HelloHttp
lib_dir = ../
[env:esp01]
platform = espressif8266
framework = arduino
board = esp01
# Custom upload tool to force use of esptool.py instead of default esptool.
# See: http://arduino.stackexchange.com/questions/20219/upload-with-esptool-fails-with-espcomm-send-command-cant-receive-slip-payload
extra_scripts = ../../Tools/platformio_esptool.py
[env:uno]
platform = atmelavr
framework = arduino
board = uno
lib_deps = WiFi
# TODO Work in progress
#[env:native]
#platform = native
# Relative to src_dir ("examples/")
#src_filter = +<../../test/*>