mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-01-17 14:18:16 +01:00
266480be3d
Defining dependent libraries in platformio.ini allows the platformio system to download the libraries as needed. (Mainly for use with Travis CI)
36 lines
660 B
INI
36 lines
660 B
INI
[platformio]
|
|
src_dir=Grbl_Esp32
|
|
lib_dir=libraries
|
|
data_dir=Grbl_Esp32/data
|
|
|
|
[common_env_data]
|
|
lib_deps_builtin =
|
|
ArduinoOTA
|
|
BluetoothSerial
|
|
DNSServer
|
|
EEPROM
|
|
ESPmDNS
|
|
FS
|
|
Preferences
|
|
SD
|
|
SPI
|
|
SPIFFS
|
|
Update
|
|
WebServer
|
|
WiFi
|
|
WiFiClientSecure
|
|
|
|
[env:nodemcu-32s]
|
|
lib_deps =
|
|
TMCStepper
|
|
arduinoWebSockets
|
|
ESP32SSPD
|
|
platform = espressif32
|
|
board = nodemcu-32s
|
|
framework = arduino
|
|
upload_speed = 512000
|
|
board_build.partitions = min_spiffs.csv
|
|
monitor_speed = 115200
|
|
build_flags = -DCORE_DEBUG_LEVEL=0 -Wno-unused-variable -Wno-unused-function
|
|
src_filter = +<*.h> +<*.s> +<*.S> +<*.cpp> +<*.c> +<*.ino> +<src/> -<.git/> -<data/> -<test/> -<tests/> -<Custom/>
|