File tree Expand file tree Collapse file tree 12 files changed +49
-49
lines changed
targets/TARGET_Ambiq_Micro
COMPONENT_lis2dh12/lis2dh12
TARGET_SFE_ARTEMIS_MODULE
TARGET_SFE_ARTEMIS_THING_PLUS Expand file tree Collapse file tree 12 files changed +49
-49
lines changed Original file line number Diff line number Diff line change 33
44add_subdirectory (TARGET_Apollo3 EXCLUDE_FROM_ALL )
55
6- add_library (Ambiq_Micro INTERFACE )
6+ add_library (mbed-ambiq-micro INTERFACE )
77
8- target_include_directories (Ambiq_Micro
8+ target_include_directories (mbed-ambiq-micro
99 INTERFACE
1010 sdk/devices
1111 sdk/utils
1212)
1313
14- target_sources (Ambiq_Micro
14+ target_sources (mbed-ambiq-micro
1515 INTERFACE
1616 sdk/devices/am_devices_button.c
1717 sdk/devices/am_devices_led.c
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ add_subdirectory(TARGET_SFE_ARTEMIS_THING_PLUS EXCLUDE_FROM_ALL)
1313add_subdirectory (TARGET_SFE_EDGE EXCLUDE_FROM_ALL )
1414add_subdirectory (TARGET_SFE_EDGE2 EXCLUDE_FROM_ALL )
1515
16- add_library (Apollo3 INTERFACE )
16+ add_library (mbed-apollo3 INTERFACE )
1717
1818if (${MBED_TOOLCHAIN} STREQUAL "ARM" )
1919 set (LINKER_FILE TOOLCHAIN_ARM_STD/AMA3B1KK.sct)
@@ -23,9 +23,9 @@ elseif(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
2323 set (STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_gcc.c)
2424endif ()
2525
26- mbed_set_linker_script(Apollo3 ${CMAKE_CURRENT_SOURCE_DIR} /${LINKER_FILE} )
26+ mbed_set_linker_script(mbed-apollo3 ${CMAKE_CURRENT_SOURCE_DIR} /${LINKER_FILE} )
2727
28- target_include_directories (Apollo3
28+ target_include_directories (mbed-apollo3
2929 INTERFACE
3030 device
3131 sdk/CMSIS/AmbiqMicro/Include
@@ -35,7 +35,7 @@ target_include_directories(Apollo3
3535 sdk/mcu/apollo3/regs
3636)
3737
38- target_sources (Apollo3
38+ target_sources (mbed-apollo3
3939 INTERFACE
4040 device/PeripheralPinConfigs.c
4141 device/PeripheralPins.c
@@ -91,8 +91,8 @@ target_sources(Apollo3
9191 ${STARTUP_FILE}
9292)
9393
94- target_link_libraries (Apollo3
94+ target_link_libraries (mbed-apollo3
9595 INTERFACE
9696 ${CMAKE_CURRENT_SOURCE_DIR} /sdk/CMSIS/ARM/Lib/ARM/libarm_cortexM4lf_math.a
97- Ambiq_Micro
97+ mbed-ambiq-micro
9898)
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(hm01b0 INTERFACE)
4+ add_library(mbed- hm01b0 INTERFACE)
55
6- target_include_directories(hm01b0
6+ target_include_directories(mbed- hm01b0
77 INTERFACE
88 .
99)
1010
11- target_sources(hm01b0
11+ target_sources(mbed- hm01b0
1212 INTERFACE
1313 HM01B0.c
1414)
1515
16- target_link_libraries(hm01b0 INTERFACE Apollo3 )
16+ target_link_libraries(mbed- hm01b0 INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(lis2dh12 INTERFACE)
4+ add_library(mbed- lis2dh12 INTERFACE)
55
6- target_include_directories(lis2dh12
6+ target_include_directories(mbed- lis2dh12
77 INTERFACE
88 .
99)
1010
11- target_sources(lis2dh12
11+ target_sources(mbed- lis2dh12
1212 INTERFACE
1313 COMPONENT_lis2dh12/lis2dh12/lis2dh12_platform_apollo3.c
1414 COMPONENT_lis2dh12/lis2dh12/lis2dh12_reg.c
1515)
1616
17- target_link_libraries(lis2dh12 INTERFACE Apollo3 )
17+ target_link_libraries(mbed- lis2dh12 INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS INTERFACE)
4+ add_library(mbed-sfe-artemis INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS
6+ target_include_directories(mbed-sfe-artemis
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS
12+ target_sources(mbed-sfe-artemis
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS_ATP INTERFACE)
4+ add_library(mbed-sfe-artemis-atp INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS_ATP
6+ target_include_directories(mbed-sfe-artemis-atp
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS_ATP
12+ target_sources(mbed-sfe-artemis-atp
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis-atp INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS_DK INTERFACE)
4+ add_library(mbed-sfe-artemis-dk INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS_DK
6+ target_include_directories(mbed-sfe-artemis-dk
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS_DK
12+ target_sources(mbed-sfe-artemis-dk
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS_DK INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis-dk INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS_MODULE INTERFACE)
4+ add_library(mbed-sfe-artemis-module INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS_MODULE
6+ target_include_directories(mbed-sfe-artemis-module
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS_MODULE
12+ target_sources(mbed-sfe-artemis-module
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS_MODULE INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis-module INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS_NANO INTERFACE)
4+ add_library(mbed-sfe-artemis-nano INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS_NANO
6+ target_include_directories(mbed-sfe-artemis-nano
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS_NANO
12+ target_sources(mbed-sfe-artemis-nano
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS_NANO INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis-nano INTERFACE mbed-apollo3 )
Original file line number Diff line number Diff line change 11# Copyright (c) 2020 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- add_library(SFE_ARTEMIS_THING_PLUS INTERFACE)
4+ add_library(mbed-sfe-artemis-thing-plus INTERFACE)
55
6- target_include_directories(SFE_ARTEMIS_THING_PLUS
6+ target_include_directories(mbed-sfe-artemis-thing-plus
77 INTERFACE
88 .
99 bsp
1010)
1111
12- target_sources(SFE_ARTEMIS_THING_PLUS
12+ target_sources(mbed-sfe-artemis-thing-plus
1313 INTERFACE
1414 bsp/am_bsp.c
1515 bsp/am_bsp_pins.c
1616)
1717
18- target_link_libraries(SFE_ARTEMIS_THING_PLUS INTERFACE Apollo3 )
18+ target_link_libraries(mbed-sfe-artemis-thing-plus INTERFACE mbed-apollo3 )
You can’t perform that action at this time.
0 commit comments