Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit26ee82f

Browse files
committed
chore(cmake): update files with STM32H5xx
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent028fe86 commit26ee82f

File tree

24 files changed

+1195
-0
lines changed

24 files changed

+1195
-0
lines changed

‎cmake/boards_db.cmake

Lines changed: 510 additions & 0 deletions
Large diffs are not rendered by default.

‎libraries/SrcWrapper/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ add_library(SrcWrapper_bin OBJECT EXCLUDE_FROM_ALL
7171
src/HAL/stm32yyxx_hal_i2c_ex.c
7272
src/HAL/stm32yyxx_hal_i2s.c
7373
src/HAL/stm32yyxx_hal_i2s_ex.c
74+
src/HAL/stm32yyxx_hal_i3c.c
7475
src/HAL/stm32yyxx_hal_icache.c
7576
src/HAL/stm32yyxx_hal_ipcc.c
7677
src/HAL/stm32yyxx_hal_irda.c
@@ -152,6 +153,7 @@ add_library(SrcWrapper_bin OBJECT EXCLUDE_FROM_ALL
152153
src/LL/stm32yyxx_ll_gpio.c
153154
src/LL/stm32yyxx_ll_hrtim.c
154155
src/LL/stm32yyxx_ll_i2c.c
156+
src/LL/stm32yyxx_ll_i3c.c
155157
src/LL/stm32yyxx_ll_icache.c
156158
src/LL/stm32yyxx_ll_lpgpio.c
157159
src/LL/stm32yyxx_ll_lptim.c
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...>
2+
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects
3+
cmake_minimum_required(VERSION3.21)
4+
5+
add_library(variantINTERFACE)
6+
add_library(variant_usageINTERFACE)
7+
8+
target_include_directories(variant_usageINTERFACE
9+
.
10+
)
11+
12+
13+
target_link_libraries(variant_usageINTERFACE
14+
base_config
15+
)
16+
17+
target_link_libraries(variantINTERFACEvariant_usage)
18+
19+
20+
21+
add_library(variant_binSTATICEXCLUDE_FROM_ALL
22+
generic_clock.c
23+
PeripheralPins.c
24+
variant_generic.cpp
25+
)
26+
target_link_libraries(variant_binPUBLICvariant_usage)
27+
28+
target_link_libraries(variantINTERFACE
29+
variant_bin
30+
)
31+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp