-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
42 lines (39 loc) · 1.04 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
38
39
40
41
42
; 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
[env:stm32h743vit6]
platform = ststm32
board = nucleo_h743zi
framework = stm32cube
build_flags =
-ISrc/BSP
-ISrc/BSP/A4988
-ISrc/BSP/TFTLCD
-ISrc/uCOS-III/CONFIG
-ISrc/uCOS-III/Ports
-ISrc/uCOS-III/Source
-ISrc/uCOS-III/uC-CPU
-ISrc/uCOS-III/uC-LIB
-DUSE_FULL_LL_DRIVER
-DHSE_VALUE=12000000
-DHSE_STARTUP_TIMEOUT=100
-DLSE_STARTUP_TIMEOUT=5000
-DLSE_VALUE=32768
-DEXTERNAL_CLOCK_VALUE=12288000
-DHSI_VALUE=64000000
-DLSI_VALUE=32000
-Wl,-u,_printf_float
upload_protocol = cmsis-dap
debug_tool = cmsis-dap
board_build.mcu = stm32h743vit6
board_build.f_cpu = 480000000L
board_build.ldscript = Src/STM32H743VITx_FLASH.ld
[platformio]
include_dir = Inc
src_dir = Src