| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- set(STM32_U0_TYPES
- U031xx
- U073xx
- U083xx
- )
- set(STM32_U0_TYPE_MATCH
- "U031.[468]"
- "U073.C"
- "U083.C"
- )
- set(STM32_U0_RAM_SIZES
- 12K
- 40K
- 40K
- )
- set(STM32_U0_CCRAM_SIZES
- 0K
- 0K
- 0K
- )
- stm32_util_create_family_targets(U0)
- target_compile_options(STM32::U0 INTERFACE
- -mcpu=cortex-m0plus
- )
- target_link_options(STM32::U0 INTERFACE
- -mcpu=cortex-m0plus
- )
- list(APPEND STM32_ALL_DEVICES
- U031C6
- U031C8
- U031F4
- U031F6
- U031F8
- U031G6
- U031G8
- U031K4
- U031K8
- U031R6
- U031R8
- U073CC
- U073HC
- U073KC
- U073MC
- U073RC
- U083CC
- U083HC
- U083KC
- U083MC
- U083RC
- )
- list(APPEND STM32_SUPPORTED_FAMILIES_LONG_NAME
- STM32U0
- )
- list(APPEND STM32_FETCH_FAMILIES U0)
- set(CUBE_U0_VERSION v1.0.0)
- set(CMSIS_U0_VERSION v1.0.0)
- set(HAL_U0_VERSION v1.0.0)
|