Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use commander #50

Merged
merged 2 commits into from
Oct 21, 2024
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
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ jobs:
app-path: zephyr-silabs
toolchains: arm-zephyr-eabi

- name: Install Silabs-specific python dependencies
run: |
pip3 install crc

- name: Fetch blobs
run: |
west blobs fetch hal_silabs
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/upstream-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
with:
python-version: 3.11

- name: Install Silabs-specific python dependencies
run: |
pip3 install crc

- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions boards/silabs/radio_boards/siwx917_rb4338a/board.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (c) 2024 Silicon Laboratories Inc.
# SPDX-License-Identifier: Apache-2.0

board_runner_args(silabs_commander "--device=SiWG917M111GTBA" "--file-type=bin"
"--file=${PROJECT_BINARY_DIR}/${KERNEL_BIN_NAME}.rps")
board_runner_args(silabs_commander "--device=SiWG917M111GTBA" "--file-type=hex"
"--file=${PROJECT_BINARY_DIR}/${KERNEL_HEX_NAME}")
include(${ZEPHYR_BASE}/boards/common/silabs_commander.board.cmake)

# It is not possible to load/flash a firmware using JLink, but it is possible to
Expand Down
8 changes: 0 additions & 8 deletions soc/silabs/silabs_siwx917/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,3 @@
# SPDX-License-Identifier: Apache-2.0

add_subdirectory(siwg917)

set_property(GLOBAL APPEND PROPERTY extra_post_build_commands
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/siwx917_isp_prepare.py
--rom_addr ${CONFIG_FLASH_BASE_ADDRESS}
--out_hex ${KERNEL_HEX_NAME}
${KERNEL_BIN_NAME}
${KERNEL_BIN_NAME}.rps
)
190 changes: 0 additions & 190 deletions soc/silabs/silabs_siwx917/siwx917_isp_prepare.py

This file was deleted.

Loading