Skip to content

Commit ee7f275

Browse files
authored
Merge pull request #858 from pimoroni/patch-bump-micropython-oct-2023
CI: Bump MicroPython to v1.21.0.
2 parents 9499b7e + 388d8af commit ee7f275

File tree

17 files changed

+30
-17
lines changed

17 files changed

+30
-17
lines changed

.github/workflows/micropython.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types: [created]
88

99
env:
10-
MICROPYTHON_VERSION: 856e08b1931b88271816a2f60648f6ff332235b2
10+
MICROPYTHON_VERSION: v1.21.0
1111
WORKFLOW_VERSION: v1
1212

1313
jobs:
@@ -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/manifest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
require("urllib.urequest")
66
require("umqtt.simple")
77

8+
# SD Card
9+
require("sdcard")
10+
811
# Bluetooth
912
require("aioble")
1013

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.

0 commit comments

Comments
 (0)