Skip to content

Commit d339200

Browse files
committed
Fix west for core build
1 parent 107beab commit d339200

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/variants/${BOARD})
55
elseif (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/variants/${BOARD}${NORMALIZED_BOARD_QUALIFIERS})
66
set(variant_dir variants/${BOARD}${NORMALIZED_BOARD_QUALIFIERS})
77
else()
8-
message(FATAL_ERROR "Variant dir not found: variants/${BOARD}, variants/${BOARD}${NORMALIZED_BOARD_QUALIFIERS}")
8+
message(INFO "Variant dir not found: variants/${BOARD}, variants/${BOARD}${NORMALIZED_BOARD_QUALIFIERS}")
99
endif()
1010

1111
if (CONFIG_ARDUINO_API)

west.yml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,38 @@
66

77
manifest:
88
self:
9-
path: modules/lib/Arduino-Zephyr-API
9+
path: modules/lib/ArduinoCore-zephyr
1010

1111
remotes:
1212
- name: zephyrproject-rtos
1313
url-base: https://github.com/zephyrproject-rtos
14+
- name: arduino
15+
url-base: https://github.com/facchinm
1416

1517
projects:
1618
- name: zephyr
17-
remote: zephyrproject-rtos
18-
revision: main
19+
remote: arduino
20+
revision: arduino_core_merge
1921
import:
2022
name-allowlist:
21-
- cmsis # required by the ARM port
22-
- hal_nordic # required by the custom_plank board (Nordic based)
23+
- cmsis
24+
- hal_nordic
2325
- hal_ti
26+
- hal_ambiq
27+
- hal_espressif
28+
- hal_infineon
29+
- hal_intel
30+
- hal_nxp
31+
- hal_stm32
32+
- hal_xtensa
33+
- hal_nordic
34+
- hal_renesas
35+
- littlefs
36+
- tinycrypt
37+
- mbedtls
38+
- segger
39+
- thrift
40+
- name: ArduinoCore-API
41+
path: modules/lib/ArduinoCore-API
42+
revision: master
43+
url: [email protected]:arduino/ArduinoCore-API

0 commit comments

Comments
 (0)