Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

add_subdirectory(TARGET_NUCLEO_G0B1RE EXCLUDE_FROM_ALL)

if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
set(STARTUP_FILE TOOLCHAIN_GCC_ARM/startup_stm32g0b1xx.S)
set(LINKER_FILE TOOLCHAIN_GCC_ARM/stm32g0b1xe.ld)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright (c) 2022 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

add_library(mbed-nucleo-g0b1re INTERFACE)

target_sources(mbed-nucleo-g0b1re
INTERFACE
PeripheralPins.c
)

target_include_directories(mbed-nucleo-g0b1re
INTERFACE
.
)

target_link_libraries(mbed-nucleo-g0b1re INTERFACE mbed-stm32g0b1xe)
Loading