This commit is contained in:
2022-12-18 15:37:26 +01:00
commit 514670e897
39 changed files with 6060 additions and 0 deletions

19
cmake/stm32/u5.cmake Normal file
View File

@@ -0,0 +1,19 @@
set(STM32_U5_TYPES
U575xx U585xx
)
set(STM32_U5_TYPE_MATCH
"U575.." "U585.."
)
set(STM32_U5_RAM_SIZES
768K 768K
)
stm32_util_create_family_targets(U5)
target_compile_options(STM32::U5 INTERFACE
-mcpu=cortex-m33 -mfpu=fpv5-sp-d16 -mfloat-abi=hard
)
target_link_options(STM32::U5 INTERFACE
-mcpu=cortex-m33 -mfpu=fpv5-sp-d16 -mfloat-abi=hard
)