Skip to content

Commit fba9f98

Browse files
author
jmcloud
committed
add support for Nucleo-H745ZI
1 parent 5801b16 commit fba9f98

File tree

5 files changed

+936
-2
lines changed

5 files changed

+936
-2
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright (c) 2020 ARM Limited. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
add_library(mbed-nucleo-h745zi-q INTERFACE)
5+
6+
target_sources(mbed-nucleo-h745zi-q
7+
INTERFACE
8+
PeripheralPins.c
9+
)
10+
11+
target_include_directories(mbed-nucleo-h745i
12+
INTERFACE
13+
.
14+
)
15+
16+
target_link_libraries(mbed-nucleo-h745zi-q INTERFACE mbed-stm32h745xi-cm7)
17+
18+
19+
add_library(mbed-nucleo-h745i-cm7 INTERFACE)
20+
21+
target_sources(mbed-nucleo-h745i-cm7
22+
INTERFACE
23+
PeripheralPins.c
24+
)
25+
26+
target_include_directories(mbed-nucleo-h745zi-cm7
27+
INTERFACE
28+
.
29+
)
30+
31+
target_link_libraries(mbed-nucleo-h745zi-cm7 INTERFACE mbed-stm32h745xi-cm7)
32+
33+
34+
add_library(mbed-nucleo-h745zi-cm4 INTERFACE)
35+
36+
target_sources(mbed-nucleo-h745zi-cm4
37+
INTERFACE
38+
PeripheralPins.c
39+
)
40+
41+
target_include_directories(mbed-nucleo-h745i-cm4
42+
INTERFACE
43+
.
44+
)
45+
46+
target_link_libraries(mbed-nucleo-h745zi-cm4 INTERFACE mbed-stm32h745xi-cm4)

0 commit comments

Comments
 (0)