l5.cmake 411 B

12345678910111213141516171819202122
  1. set(STM32_L5_TYPES
  2. L552xx L562xx
  3. )
  4. set(STM32_L5_TYPE_MATCH
  5. "L552.." "L562.."
  6. )
  7. set(STM32_L5_RAM_SIZES
  8. 256K 256K
  9. )
  10. set(STM32_L5_CCRAM_SIZES
  11. 0K 0K
  12. )
  13. stm32_util_create_family_targets(L5)
  14. target_compile_options(STM32::L5 INTERFACE
  15. -mcpu=cortex-m33 -mfpu=fpv5-sp-d16 -mfloat-abi=hard
  16. )
  17. target_link_options(STM32::L5 INTERFACE
  18. -mcpu=cortex-m33 -mfpu=fpv5-sp-d16 -mfloat-abi=hard
  19. )