Skip to content

Commit

Permalink
firmware: use python3 interpreter, not python
Browse files Browse the repository at this point in the history
  • Loading branch information
mossmann committed Sep 26, 2022
1 parent f3d10dc commit 1f9f597
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
run: |
brew tap armmbed/formulae
brew install arm-none-eabi-gcc dfu-util
pip install PyYAML
pip3 install PyYAML
if: matrix.os == 'macos-latest'

- name: Install dependencies (Ubuntu)
Expand Down
2 changes: 1 addition & 1 deletion firmware/hackrf-common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ macro(DeclareTargets)
COMMAND rm -f _tmp.dfu _header.bin
COMMAND cp ${PROJECT_NAME}_dfu.bin _tmp.dfu
COMMAND dfu-suffix --vid=0x1fc9 --pid=0x000c --did=0x0 -a _tmp.dfu
COMMAND python ${PATH_DFU_PY} ${PROJECT_NAME}
COMMAND python3 ${PATH_DFU_PY} ${PROJECT_NAME}
COMMAND cat _header.bin _tmp.dfu >${PROJECT_NAME}.dfu
COMMAND rm -f _tmp.dfu _header.bin
)
Expand Down
2 changes: 1 addition & 1 deletion firmware/libopencm3
Submodule libopencm3 updated 1 files
+1 −1 scripts/irq2nvic_h

0 comments on commit 1f9f597

Please sign in to comment.