Skip to content

Commit 544e5b9

Browse files
committed
CMake STM32: fix targets naming
Follow the naming for other CMake targets, using prefix mbed-, lower case with dashes
1 parent 39ab9c8 commit 544e5b9

File tree

173 files changed

+831
-828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+831
-828
lines changed

targets/TARGET_STM/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ add_subdirectory(TARGET_STM32L5 EXCLUDE_FROM_ALL)
1717
add_subdirectory(TARGET_STM32WB EXCLUDE_FROM_ALL)
1818
add_subdirectory(TARGET_STM32WL EXCLUDE_FROM_ALL)
1919

20-
add_library(STM INTERFACE)
20+
add_library(mbed-stm INTERFACE)
2121

22-
target_include_directories(STM
22+
target_include_directories(mbed-stm
2323
INTERFACE
2424
.
2525
)
2626

27-
target_sources(STM
27+
target_sources(mbed-stm
2828
INTERFACE
2929
USBPhy_STM32.cpp
3030
analogin_api.c

targets/TARGET_STM/TARGET_STM32F0/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ add_subdirectory(TARGET_STM32F070xB EXCLUDE_FROM_ALL)
77
add_subdirectory(TARGET_STM32F030x8 EXCLUDE_FROM_ALL)
88
add_subdirectory(STM32Cube_FW EXCLUDE_FROM_ALL)
99

10-
add_library(STM32F0 INTERFACE)
10+
add_library(mbed-stm32f0 INTERFACE)
1111

12-
target_include_directories(STM32F0
12+
target_include_directories(mbed-stm32f0
1313
INTERFACE
1414
.
1515
)
1616

17-
target_sources(STM32F0
17+
target_sources(mbed-stm32f0
1818
INTERFACE
1919
analogin_device.c
2020
analogout_device.c
@@ -26,4 +26,4 @@ target_sources(STM32F0
2626
spi_api.c
2727
)
2828

29-
target_link_libraries(STM32F0 INTERFACE STM STM32F0Cube_FW)
29+
target_link_libraries(mbed-stm32f0 INTERFACE STM mbed-stm32f0cube-fw)
Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
# Copyright (c) 2020 ARM Limited. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
add_library(STM32F0Cube_FW INTERFACE)
4+
add_library(mbed-stm32f0cube-fw INTERFACE)
55

6-
target_sources(STM32F0Cube_FW
6+
target_sources(mbed-stm32f0cube-fw
77
INTERFACE
8-
STM32F0xx_HAL_Driver/Legacy/stm32f0xx_hal_can_legacy.c
9-
STM32F0xx_HAL_Driver/stm32f0xx_hal.c
10-
STM32F0xx_HAL_Driver/stm32f0xx_hal_adc.c
11-
STM32F0xx_HAL_Driver/stm32f0xx_hal_adc_ex.c
12-
STM32F0xx_HAL_Driver/stm32f0xx_hal_can.c
13-
STM32F0xx_HAL_Driver/stm32f0xx_hal_cec.c
14-
STM32F0xx_HAL_Driver/stm32f0xx_hal_comp.c
15-
STM32F0xx_HAL_Driver/stm32f0xx_hal_cortex.c
16-
STM32F0xx_HAL_Driver/stm32f0xx_hal_crc.c
17-
STM32F0xx_HAL_Driver/stm32f0xx_hal_crc_ex.c
18-
STM32F0xx_HAL_Driver/stm32f0xx_hal_dac.c
19-
STM32F0xx_HAL_Driver/stm32f0xx_hal_dac_ex.c
20-
STM32F0xx_HAL_Driver/stm32f0xx_hal_dma.c
21-
STM32F0xx_HAL_Driver/stm32f0xx_hal_exti.c
22-
STM32F0xx_HAL_Driver/stm32f0xx_hal_flash.c
23-
STM32F0xx_HAL_Driver/stm32f0xx_hal_flash_ex.c
24-
STM32F0xx_HAL_Driver/stm32f0xx_hal_gpio.c
25-
STM32F0xx_HAL_Driver/stm32f0xx_hal_i2c.c
26-
STM32F0xx_HAL_Driver/stm32f0xx_hal_i2c_ex.c
27-
STM32F0xx_HAL_Driver/stm32f0xx_hal_i2s.c
28-
STM32F0xx_HAL_Driver/stm32f0xx_hal_irda.c
29-
STM32F0xx_HAL_Driver/stm32f0xx_hal_iwdg.c
30-
STM32F0xx_HAL_Driver/stm32f0xx_hal_pcd.c
31-
STM32F0xx_HAL_Driver/stm32f0xx_hal_pcd_ex.c
32-
STM32F0xx_HAL_Driver/stm32f0xx_hal_pwr.c
33-
STM32F0xx_HAL_Driver/stm32f0xx_hal_pwr_ex.c
34-
STM32F0xx_HAL_Driver/stm32f0xx_hal_rcc.c
35-
STM32F0xx_HAL_Driver/stm32f0xx_hal_rcc_ex.c
36-
STM32F0xx_HAL_Driver/stm32f0xx_hal_rtc.c
37-
STM32F0xx_HAL_Driver/stm32f0xx_hal_rtc_ex.c
38-
STM32F0xx_HAL_Driver/stm32f0xx_hal_smartcard.c
39-
STM32F0xx_HAL_Driver/stm32f0xx_hal_smartcard_ex.c
40-
STM32F0xx_HAL_Driver/stm32f0xx_hal_smbus.c
41-
STM32F0xx_HAL_Driver/stm32f0xx_hal_spi.c
42-
STM32F0xx_HAL_Driver/stm32f0xx_hal_spi_ex.c
43-
STM32F0xx_HAL_Driver/stm32f0xx_hal_tim.c
44-
STM32F0xx_HAL_Driver/stm32f0xx_hal_tim_ex.c
45-
STM32F0xx_HAL_Driver/stm32f0xx_hal_tsc.c
46-
STM32F0xx_HAL_Driver/stm32f0xx_hal_uart.c
47-
STM32F0xx_HAL_Driver/stm32f0xx_hal_uart_ex.c
48-
STM32F0xx_HAL_Driver/stm32f0xx_hal_usart.c
49-
STM32F0xx_HAL_Driver/stm32f0xx_hal_usart_ex.c
50-
STM32F0xx_HAL_Driver/stm32f0xx_hal_wwdg.c
51-
STM32F0xx_HAL_Driver/stm32f0xx_ll_adc.c
52-
STM32F0xx_HAL_Driver/stm32f0xx_ll_comp.c
53-
STM32F0xx_HAL_Driver/stm32f0xx_ll_crc.c
54-
STM32F0xx_HAL_Driver/stm32f0xx_ll_crs.c
55-
STM32F0xx_HAL_Driver/stm32f0xx_ll_dac.c
56-
STM32F0xx_HAL_Driver/stm32f0xx_ll_dma.c
57-
STM32F0xx_HAL_Driver/stm32f0xx_ll_exti.c
58-
STM32F0xx_HAL_Driver/stm32f0xx_ll_gpio.c
59-
STM32F0xx_HAL_Driver/stm32f0xx_ll_i2c.c
60-
STM32F0xx_HAL_Driver/stm32f0xx_ll_pwr.c
61-
STM32F0xx_HAL_Driver/stm32f0xx_ll_rcc.c
62-
STM32F0xx_HAL_Driver/stm32f0xx_ll_rtc.c
63-
STM32F0xx_HAL_Driver/stm32f0xx_ll_spi.c
64-
STM32F0xx_HAL_Driver/stm32f0xx_ll_tim.c
65-
STM32F0xx_HAL_Driver/stm32f0xx_ll_usart.c
66-
STM32F0xx_HAL_Driver/stm32f0xx_ll_usb.c
67-
STM32F0xx_HAL_Driver/stm32f0xx_ll_utils.c
68-
system_stm32f0xx.c
8+
stm32f0xx_HAL_Driver/Legacy/stm32f0xx_hal_can_legacy.c
9+
stm32f0xx_HAL_Driver/stm32f0xx_hal.c
10+
stm32f0xx_HAL_Driver/stm32f0xx_hal_adc.c
11+
stm32f0xx_HAL_Driver/stm32f0xx_hal_adc_ex.c
12+
stm32f0xx_HAL_Driver/stm32f0xx_hal_can.c
13+
stm32f0xx_HAL_Driver/stm32f0xx_hal_cec.c
14+
stm32f0xx_HAL_Driver/stm32f0xx_hal_comp.c
15+
stm32f0xx_HAL_Driver/stm32f0xx_hal_cortex.c
16+
stm32f0xx_HAL_Driver/stm32f0xx_hal_crc.c
17+
stm32f0xx_HAL_Driver/stm32f0xx_hal_crc_ex.c
18+
stm32f0xx_HAL_Driver/stm32f0xx_hal_dac.c
19+
stm32f0xx_HAL_Driver/stm32f0xx_hal_dac_ex.c
20+
stm32f0xx_HAL_Driver/stm32f0xx_hal_dma.c
21+
stm32f0xx_HAL_Driver/stm32f0xx_hal_exti.c
22+
stm32f0xx_HAL_Driver/stm32f0xx_hal_flash.c
23+
stm32f0xx_HAL_Driver/stm32f0xx_hal_flash_ex.c
24+
stm32f0xx_HAL_Driver/stm32f0xx_hal_gpio.c
25+
stm32f0xx_HAL_Driver/stm32f0xx_hal_i2c.c
26+
stm32f0xx_HAL_Driver/stm32f0xx_hal_i2c_ex.c
27+
stm32f0xx_HAL_Driver/stm32f0xx_hal_i2s.c
28+
stm32f0xx_HAL_Driver/stm32f0xx_hal_irda.c
29+
stm32f0xx_HAL_Driver/stm32f0xx_hal_iwdg.c
30+
stm32f0xx_HAL_Driver/stm32f0xx_hal_pcd.c
31+
stm32f0xx_HAL_Driver/stm32f0xx_hal_pcd_ex.c
32+
stm32f0xx_HAL_Driver/stm32f0xx_hal_pwr.c
33+
stm32f0xx_HAL_Driver/stm32f0xx_hal_pwr_ex.c
34+
stm32f0xx_HAL_Driver/stm32f0xx_hal_rcc.c
35+
stm32f0xx_HAL_Driver/stm32f0xx_hal_rcc_ex.c
36+
stm32f0xx_HAL_Driver/stm32f0xx_hal_rtc.c
37+
stm32f0xx_HAL_Driver/stm32f0xx_hal_rtc_ex.c
38+
stm32f0xx_HAL_Driver/stm32f0xx_hal_smartcard.c
39+
stm32f0xx_HAL_Driver/stm32f0xx_hal_smartcard_ex.c
40+
stm32f0xx_HAL_Driver/stm32f0xx_hal_smbus.c
41+
stm32f0xx_HAL_Driver/stm32f0xx_hal_spi.c
42+
stm32f0xx_HAL_Driver/stm32f0xx_hal_spi_ex.c
43+
stm32f0xx_HAL_Driver/stm32f0xx_hal_tim.c
44+
stm32f0xx_HAL_Driver/stm32f0xx_hal_tim_ex.c
45+
stm32f0xx_HAL_Driver/stm32f0xx_hal_tsc.c
46+
stm32f0xx_HAL_Driver/stm32f0xx_hal_uart.c
47+
stm32f0xx_HAL_Driver/stm32f0xx_hal_uart_ex.c
48+
stm32f0xx_HAL_Driver/stm32f0xx_hal_usart.c
49+
stm32f0xx_HAL_Driver/stm32f0xx_hal_usart_ex.c
50+
stm32f0xx_HAL_Driver/stm32f0xx_hal_wwdg.c
51+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_adc.c
52+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_comp.c
53+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_crc.c
54+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_crs.c
55+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_dac.c
56+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_dma.c
57+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_exti.c
58+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_gpio.c
59+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_i2c.c
60+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_pwr.c
61+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_rcc.c
62+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_rtc.c
63+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_spi.c
64+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_tim.c
65+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_usart.c
66+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_usb.c
67+
stm32f0xx_HAL_Driver/mbed-stm32f0xx_ll_utils.c
68+
system_mbed-stm32f0xx.c
6969
)
7070

71-
target_include_directories(STM32F0Cube_FW
71+
target_include_directories(mbed-stm32f0cube-fw
7272
INTERFACE
7373
.
7474
CMSIS
75-
STM32F0xx_HAL_Driver
76-
STM32F0xx_HAL_Driver/Legacy
75+
stm32f0xx_HAL_Driver
76+
stm32f0xx_HAL_Driver/Legacy
7777
)

targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F030x8/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
5-
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32f030x8.S)
6-
set(LINKER_FILE TOOLCHAIN_GCC_ARM/stm32f030x8.ld)
5+
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_mbed-stm32f030x8.S)
6+
set(LINKER_FILE TOOLCHAIN_GCC_ARM/mbed-stm32f030x8.ld)
77
elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
8-
set(STARTUP_FILE TOOLCHAIN_ARM/startup_stm32f030x8.S)
9-
set(LINKER_FILE TOOLCHAIN_ARM/stm32f030x8.sct)
8+
set(STARTUP_FILE TOOLCHAIN_ARM/startup_mbed-stm32f030x8.S)
9+
set(LINKER_FILE TOOLCHAIN_ARM/mbed-stm32f030x8.sct)
1010
endif()
1111

12-
add_library(STM32F030x8 INTERFACE)
12+
add_library(mbed-stm32f030x8 INTERFACE)
1313

14-
target_sources(STM32F030x8
14+
target_sources(mbed-stm32f030x8
1515
INTERFACE
1616
${STARTUP_FILE}
1717
)
1818

19-
target_include_directories(STM32F030x8
19+
target_include_directories(mbed-stm32f030x8
2020
INTERFACE
2121
.
2222
)
2323

24-
mbed_set_linker_script(STM32F030x8 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
24+
mbed_set_linker_script(mbed-stm32f030x8 ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2525

26-
target_link_libraries(STM32F030x8 INTERFACE STM32F0)
26+
target_link_libraries(mbed-stm32f030x8 INTERFACE mbed-stm32f0)

targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F070xB/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@
44
add_subdirectory(TARGET_NUCLEO_F070RB EXCLUDE_FROM_ALL)
55

66
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
7-
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32f070xb.S)
8-
set(LINKER_FILE TOOLCHAIN_GCC_ARM/stm32f070xb.ld)
7+
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_mbed-stm32f070xb.S)
8+
set(LINKER_FILE TOOLCHAIN_GCC_ARM/mbed-stm32f070xb.ld)
99
elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
10-
set(STARTUP_FILE TOOLCHAIN_ARM/startup_stm32f070xb.S)
11-
set(LINKER_FILE TOOLCHAIN_ARM/stm32f070xb.sct)
10+
set(STARTUP_FILE TOOLCHAIN_ARM/startup_mbed-stm32f070xb.S)
11+
set(LINKER_FILE TOOLCHAIN_ARM/mbed-stm32f070xb.sct)
1212
endif()
1313

14-
add_library(STM32F070xB INTERFACE)
14+
add_library(mbed-stm32f070xB INTERFACE)
1515

16-
target_sources(STM32F070xB
16+
target_sources(mbed-stm32f070xB
1717
INTERFACE
1818
system_clock.c
1919
${STARTUP_FILE}
2020
)
2121

22-
target_include_directories(STM32F070xB
22+
target_include_directories(mbed-stm32f070xB
2323
INTERFACE
2424
.
2525
)
2626

27-
mbed_set_linker_script(STM32F070xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
27+
mbed_set_linker_script(mbed-stm32f070xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2828

29-
target_link_libraries(STM32F070xB INTERFACE STM32F0)
29+
target_link_libraries(mbed-stm32f070xB INTERFACE mbed-stm32f0)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Copyright (c) 2020 ARM Limited. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
add_library(NUCLEO_F070RB INTERFACE)
4+
add_library(mbed-nucleo-f070rb INTERFACE)
55

6-
target_sources(NUCLEO_F070RB
6+
target_sources(mbed-nucleo-f070rb
77
INTERFACE
88
PeripheralPins.c
99
)
1010

11-
target_include_directories(NUCLEO_F070RB
11+
target_include_directories(mbed-nucleo-f070rb
1212
INTERFACE
1313
.
1414
)
1515

16-
target_link_libraries(NUCLEO_F070RB INTERFACE STM32F070xB)
16+
target_link_libraries(mbed-nucleo-f070rb INTERFACE mbed-stm32f070xB)

targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F072xB/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@
44
add_subdirectory(TARGET_NUCLEO_F072RB EXCLUDE_FROM_ALL)
55

66
if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
7-
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32f072xb.S)
8-
set(LINKER_FILE TOOLCHAIN_GCC_ARM/stm32f072xb.ld)
7+
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_mbed-stm32f072xb.S)
8+
set(LINKER_FILE TOOLCHAIN_GCC_ARM/mbed-stm32f072xb.ld)
99
elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
10-
set(STARTUP_FILE TOOLCHAIN_ARM/startup_stm32f072xb.S)
11-
set(LINKER_FILE TOOLCHAIN_ARM/stm32f072xb.sct)
10+
set(STARTUP_FILE TOOLCHAIN_ARM/startup_mbed-stm32f072xb.S)
11+
set(LINKER_FILE TOOLCHAIN_ARM/mbed-stm32f072xb.sct)
1212
endif()
1313

14-
add_library(STM32F072xB INTERFACE)
14+
add_library(mbed-stm32f072xB INTERFACE)
1515

16-
target_sources(STM32F072xB
16+
target_sources(mbed-stm32f072xB
1717
INTERFACE
1818
system_clock.c
1919
${STARTUP_FILE}
2020
)
2121

22-
target_include_directories(STM32F072xB
22+
target_include_directories(mbed-stm32f072xB
2323
INTERFACE
2424
.
2525
)
2626

27-
mbed_set_linker_script(STM32F072xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
27+
mbed_set_linker_script(mbed-stm32f072xB ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2828

29-
target_link_libraries(STM32F072xB INTERFACE STM32F0)
29+
target_link_libraries(mbed-stm32f072xB INTERFACE mbed-stm32f0)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Copyright (c) 2020 ARM Limited. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
add_library(NUCLEO_F072RB INTERFACE)
4+
add_library(mbed-nucleo-f072rb INTERFACE)
55

6-
target_sources(NUCLEO_F072RB
6+
target_sources(mbed-nucleo-f072rb
77
INTERFACE
88
PeripheralPins.c
99
)
1010

11-
target_include_directories(NUCLEO_F072RB
11+
target_include_directories(mbed-nucleo-f072rb
1212
INTERFACE
1313
.
1414
)
1515

16-
target_link_libraries(NUCLEO_F072RB INTERFACE STM32F072xB)
16+
target_link_libraries(mbed-nucleo-f072rb INTERFACE mbed-stm32f072xB)

targets/TARGET_STM/TARGET_STM32F0/TARGET_STM32F091xC/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "ARM")
1111
set(LINKER_FILE TOOLCHAIN_ARM/stm32f091xc.sct)
1212
endif()
1313

14-
add_library(STM32F091xC INTERFACE)
14+
add_library(mbed-stm32f091xc INTERFACE)
1515

16-
target_sources(STM32F091xC
16+
target_sources(mbed-stm32f091xc
1717
INTERFACE
1818
system_clock.c
1919
${STARTUP_FILE}
2020
)
2121

22-
target_include_directories(STM32F091xC
22+
target_include_directories(mbed-stm32f091xc
2323
INTERFACE
2424
.
2525
)
2626

27-
mbed_set_linker_script(STM32F091xC ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
27+
mbed_set_linker_script(mbed-stm32f091xc ${CMAKE_CURRENT_SOURCE_DIR}/${LINKER_FILE})
2828

29-
target_link_libraries(STM32F091xC INTERFACE STM32F0)
29+
target_link_libraries(mbed-stm32f091xc INTERFACE mbed-stm32f0)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Copyright (c) 2020 ARM Limited. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
add_library(NUCLEO_F091RC INTERFACE)
4+
add_library(mbed-nucleo-f091rc INTERFACE)
55

6-
target_sources(NUCLEO_F091RC
6+
target_sources(mbed-nucleo-f091rc
77
INTERFACE
88
PeripheralPins.c
99
)
1010

11-
target_include_directories(NUCLEO_F091RC
11+
target_include_directories(mbed-nucleo-f091rc
1212
INTERFACE
1313
.
1414
)
1515

16-
target_link_libraries(NUCLEO_F091RC INTERFACE STM32F091xC)
16+
target_link_libraries(mbed-nucleo-f091rc INTERFACE mbed-stm32f091xC)

0 commit comments

Comments
 (0)