1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-01-17 14:18:16 +01:00
Grbl_Esp32/platformio.ini
bdring 0e4013c472
Machine Space, Dynamixel and RC Servo Updates (#586)
* Vewry Incomplete DO NOT USE

* Working on uart init

* Getting closer

Need to prevent multiple UART inits

* Basic functionality

* fixing variable

* Reading position is now working - Not ready for use though.

* Modified homing to add $<axis>/Home/Mpos feature

* Tweak to the debug reporting

* updates after homing

* added homing stuff

* Pulled in recent RC Servo changes

* cleanup machine defs

* updated servos

* Cleanup messages

* Update for PR

* Fixing travel vs. max_travel

* Formatting

* More cleanup

* Update after review

Co-authored-by: Bart Dring <bdring@buildlog.net>
2020-09-08 16:51:44 -05:00

58 lines
1.0 KiB
INI

[platformio]
src_dir=Grbl_Esp32
lib_dir=libraries
data_dir=Grbl_Esp32/data
default_envs=release
;extra_configs=debug.ini
[common_env_data]
lib_deps_builtin =
ArduinoOTA
BluetoothSerial
DNSServer
EEPROM
ESPmDNS
FS
Preferences
SD
SPI
SPIFFS
Update
WebServer
WiFi
WiFiClientSecure
[common]
build_flags =
;-DMACHINE_FILENAME=test_drive.h ;Remove ";" from the beginning of this line and specify the machine file
-DCORE_DEBUG_LEVEL=0
-Wno-unused-variable
-Wno-unused-function
[env]
lib_deps =
TMCStepper@>=0.7.0,<1.0.0
platform = espressif32
board = esp32dev
framework = arduino
upload_speed = 921600
board_build.partitions = min_spiffs.csv
monitor_speed = 115200
monitor_flags =
--eol=CRLF
--echo
--filter=esp32_exception_decoder
board_build.f_cpu = 240000000L
; set frequency to 80MHz
board_build.f_flash = 80000000L
board_build.flash_mode = qio
build_flags = ${common.build_flags}
src_filter =
+<*.h> +<*.s> +<*.S> +<*.cpp> +<*.c> +<*.ino> +<src/>
-<.git/> -<data/> -<test/> -<tests/> -<Custom/>
[env:release]
[env:debug]
build_type = debug