
ADD: three pins for current strength values FIX: ADC1->ADC2 ENH: prepare for UART FIX&ADD: add USART print, add extra_script to print floats to COM port #2 ADD: some func #2 Rebuild project structure ADD: .clang-format file ENG: use flag ADD: USART1 FIX: .ioc FIX: .ioc ADD: debug script to angle value ADD: gitlab-ci ADD: gitlab CI ADD: gitlab-ci FIX: gitlab-ci ADD&FIX: all sensors work! (or not?)
26 lines
No EOL
739 B
INI
26 lines
No EOL
739 B
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter
|
|
; Upload options: custom upload port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
; Advanced options: extra scripting
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
[platformio]
|
|
include_dir = Inc
|
|
src_dir = Src
|
|
lib_dir = Lib
|
|
[env:robotroller]
|
|
platform = ststm32
|
|
board = genericSTM32F446RE
|
|
framework = stm32cube
|
|
board_build.stm32cube.custom_config_header = yes
|
|
build_flags =
|
|
-D USE_FULL_LL_DRIVER
|
|
-D USE_HAL_DRIVER
|
|
upload_protocol = stlink
|
|
debug_tool = stlink
|
|
monitor_speed = 115200
|
|
monitor_parity = N
|
|
extra_scripts = extra_script.py |