Skip to content

Commit 08ce4fb

Browse files
committed
MicroPython: Update boards to match upstream naming conventions.
1 parent 20de8a3 commit 08ce4fb

File tree

13 files changed

+11
-7
lines changed

13 files changed

+11
-7
lines changed

.github/workflows/micropython.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ jobs:
6969
matrix:
7070
include:
7171
- name: pico
72-
board: PICO
72+
board: RPI_PICO
7373
- name: picow
74-
board: PICO_W
74+
board: RPI_PICO_W
7575
- name: tiny2040
7676
board: PIMORONI_TINY2040
7777
- name: picolipo_4mb
@@ -84,11 +84,11 @@ jobs:
8484
board: PICO_W_ENVIRO
8585
patch: true
8686
- name: galactic_unicorn
87-
board: PICO_W
87+
board: RPI_PICO_W
8888
- name: cosmic_unicorn
89-
board: PICO_W
89+
board: RPI_PICO_W
9090
- name: stellar_unicorn
91-
board: PICO_W
91+
board: RPI_PICO_W
9292
- name: inky_frame
9393
board: PICO_W_INKY
9494
patch: true

micropython/board/PICO_W_ENVIRO/mpconfigboard.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# cmake file for Pimoroni Enviro with Raspberry Pi Pico W
2-
set(MICROPY_BOARD PICO_W)
2+
set(MICROPY_BOARD RPI_PICO_W)
3+
set(PICO_BOARD "pico_w")
34

45
# The C malloc is needed by cyw43-driver Bluetooth and Pimoroni Pico modules
56
set(MICROPY_C_HEAP_SIZE 4096)

micropython/board/PICO_W_INKY/mpconfigboard.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# cmake file for Pimoroni Inky with Raspberry Pi Pico W
2-
set(MICROPY_BOARD PICO_W)
2+
set(MICROPY_BOARD RPI_PICO_W)
3+
set(PICO_BOARD "pico_w")
34

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

micropython/board/PICO/mpconfigboard.cmake renamed to micropython/board/RPI_PICO/mpconfigboard.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# cmake file for Raspberry Pi Pico
2+
set(PICO_BOARD "pico")
23

34
# Board specific version of the frozen manifest
45
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)