Skip to content

Commit

Permalink
MicroPython: Update boards to match upstream naming conventions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Oct 5, 2023
1 parent c677f0c commit 0afc317
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/micropython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:
matrix:
include:
- name: pico
board: PICO
board: RPI_PICO
- name: picow
board: PICO_W
board: RPI_PICO_W
- name: tiny2040
board: PIMORONI_TINY2040
- name: picolipo_4mb
Expand All @@ -84,11 +84,11 @@ jobs:
board: PICO_W_ENVIRO
patch: true
- name: galactic_unicorn
board: PICO_W
board: RPI_PICO_W
- name: cosmic_unicorn
board: PICO_W
board: RPI_PICO_W
- name: stellar_unicorn
board: PICO_W
board: RPI_PICO_W
- name: inky_frame
board: PICO_W_INKY
patch: true
Expand Down
3 changes: 2 additions & 1 deletion micropython/board/PICO_W_ENVIRO/mpconfigboard.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# cmake file for Pimoroni Enviro with Raspberry Pi Pico W
set(MICROPY_BOARD PICO_W)
set(MICROPY_BOARD RPI_PICO_W)
set(PICO_BOARD "pico_w")

# The C malloc is needed by cyw43-driver Bluetooth and Pimoroni Pico modules
set(MICROPY_C_HEAP_SIZE 4096)
Expand Down
3 changes: 2 additions & 1 deletion micropython/board/PICO_W_INKY/mpconfigboard.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# cmake file for Pimoroni Inky with Raspberry Pi Pico W
set(MICROPY_BOARD PICO_W)
set(MICROPY_BOARD RPI_PICO_W)
set(PICO_BOARD "pico_w")

# The C malloc is needed by cyw43-driver Bluetooth and Pimoroni Pico modules
set(MICROPY_C_HEAP_SIZE 4096)
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# cmake file for Raspberry Pi Pico
set(PICO_BOARD "pico")

# Board specific version of the frozen manifest
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# cmake file for Raspberry Pi Pico W
set(PICO_BOARD "pico_w")

# The C malloc is needed by cyw43-driver Bluetooth and Pimoroni Pico modules
set(MICROPY_C_HEAP_SIZE 4096)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 0afc317

Please sign in to comment.