CMake: add STM32F2 targets

pull/13915/head
Martin Kojtal 2020-11-17 12:06:59 +00:00
parent 81b61b2090
commit 9933b7d808
2 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,87 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
if("NUCLEO_F207ZG" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(TARGET_NUCLEO_F207ZG)
endif()
target_sources(mbed-core
INTERFACE
analogin_device.c
analogout_device.c
flash_api.c
gpio_irq_device.c
pwmout_device.c
serial_device.c
spi_api.c
device/stm32f2xx_hal.c
device/stm32f2xx_hal_adc.c
device/stm32f2xx_hal_adc_ex.c
device/stm32f2xx_hal_can.c
device/stm32f2xx_hal_cortex.c
device/stm32f2xx_hal_crc.c
device/stm32f2xx_hal_cryp.c
device/stm32f2xx_hal_dac.c
device/stm32f2xx_hal_dac_ex.c
device/stm32f2xx_hal_dcmi.c
device/stm32f2xx_hal_dma.c
device/stm32f2xx_hal_dma_ex.c
device/stm32f2xx_hal_eth.c
device/stm32f2xx_hal_flash.c
device/stm32f2xx_hal_flash_ex.c
device/stm32f2xx_hal_gpio.c
device/stm32f2xx_hal_hash.c
device/stm32f2xx_hal_hcd.c
device/stm32f2xx_hal_i2c.c
device/stm32f2xx_hal_i2s.c
device/stm32f2xx_hal_irda.c
device/stm32f2xx_hal_iwdg.c
device/stm32f2xx_hal_mmc.c
device/stm32f2xx_hal_nand.c
device/stm32f2xx_hal_nor.c
device/stm32f2xx_hal_pccard.c
device/stm32f2xx_hal_pcd.c
device/stm32f2xx_hal_pcd_ex.c
device/stm32f2xx_hal_pwr.c
device/stm32f2xx_hal_pwr_ex.c
device/stm32f2xx_hal_rcc.c
device/stm32f2xx_hal_rcc_ex.c
device/stm32f2xx_hal_rng.c
device/stm32f2xx_hal_rtc.c
device/stm32f2xx_hal_rtc_ex.c
device/stm32f2xx_hal_sd.c
device/stm32f2xx_hal_smartcard.c
device/stm32f2xx_hal_spi.c
device/stm32f2xx_hal_sram.c
device/stm32f2xx_hal_tim.c
device/stm32f2xx_hal_tim_ex.c
device/stm32f2xx_hal_uart.c
device/stm32f2xx_hal_usart.c
device/stm32f2xx_hal_wwdg.c
device/stm32f2xx_ll_adc.c
device/stm32f2xx_ll_crc.c
device/stm32f2xx_ll_dac.c
device/stm32f2xx_ll_dma.c
device/stm32f2xx_ll_exti.c
device/stm32f2xx_ll_fsmc.c
device/stm32f2xx_ll_gpio.c
device/stm32f2xx_ll_i2c.c
device/stm32f2xx_ll_pwr.c
device/stm32f2xx_ll_rcc.c
device/stm32f2xx_ll_rng.c
device/stm32f2xx_ll_rtc.c
device/stm32f2xx_ll_sdmmc.c
device/stm32f2xx_ll_spi.c
device/stm32f2xx_ll_tim.c
device/stm32f2xx_ll_usart.c
device/stm32f2xx_ll_usb.c
device/stm32f2xx_ll_utils.c
device/system_stm32f2xx.c
)
target_include_directories(mbed-core
INTERFACE
.
device
)

View File

@ -0,0 +1,27 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32f207xx.S)
set(LINKER_FILE TOOLCHAIN_GCC_ARM/STM32F207ZGTx_FLASH.ld)
elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
set(STARTUP_FILE TOOLCHAIN_ARM/startup_stm32f207xx.S)
set(LINKER_FILE TOOLCHAIN_ARM/stm32f207xx.sct)
endif()
set_property(GLOBAL PROPERTY MBED_TARGET_LINKER_FILE ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
target_sources(mbed-core
INTERFACE
PeripheralPins.c
device/system_clock.c
${STARTUP_FILE}
)
add_subdirectory(STM32Cube_FW)
target_include_directories(mbed-core
INTERFACE
.
device
)