36 lines
879 B
INI
36 lines
879 B
INI
; Project configuration file
|
|
|
|
[config]
|
|
; Hardware Serial baud rate
|
|
; Also available in the code as `MONITOR_SPEED`
|
|
monitor_speed = 115200
|
|
|
|
; Software Config
|
|
; note: additionnal flags are added by Platform.io (see total amount in `.vscode/c_cpp_properties.json` in the `defines` section)
|
|
; notworthy ones:
|
|
; __PLATFORMIO_BUILD_DEBUG__ = debug mode
|
|
build_flags =
|
|
; DO NOT TOUCH --- START
|
|
-D MONITOR_SPEED=${config.monitor_speed}
|
|
; DO NOT TOUCH --- END
|
|
-D WAITING_WIFI_DELAY=1000
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; stepper config ;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;
|
|
-D STEPMOTOR_I2C_ADDR=0x70
|
|
-D STEPER_ACC=200
|
|
;-D STEPER_PAS=755.906 ; = 65mm
|
|
-D STEPER_PAS=58 ; = 5mm
|
|
-D STEPER_SPEED=1000 ; 12000
|
|
|
|
|
|
; nfc addr
|
|
-D NFC_ADDR=0x28
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; BigNfc config ;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;
|
|
-D BIG_NFC_RX=5
|
|
-D BIG_NFC_TX=17
|