diff options
| author | Dan Halbert <halbert@adafruit.com> | 2021-01-30 18:04:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-30 18:04:27 -0500 |
| commit | 9bceb32de7091d6ebcf6cef8d7577059c246d0ce (patch) | |
| tree | 248dadb95daa7c28116af153c563804cb313636f /ports | |
| parent | 70a5f464df709737fb90a9ab69baf08671c8f383 (diff) | |
| parent | acbf66dacc198588323d1887e2599acb5d71cf12 (diff) | |
Merge pull request #4092 from jamesbowman/main
Add Gameduino 3X Dazzler support on raspberry_pi_pico
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/raspberrypi/boards/raspberry_pi_pico/mpconfigboard.mk | 2 | ||||
| -rw-r--r-- | ports/raspberrypi/mpconfigport.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ports/raspberrypi/boards/raspberry_pi_pico/mpconfigboard.mk b/ports/raspberrypi/boards/raspberry_pi_pico/mpconfigboard.mk index 69ff56fef..54c130660 100644 --- a/ports/raspberrypi/boards/raspberry_pi_pico/mpconfigboard.mk +++ b/ports/raspberrypi/boards/raspberry_pi_pico/mpconfigboard.mk @@ -7,3 +7,5 @@ CHIP_VARIANT = RP2040 CHIP_FAMILY = rp2 INTERNAL_FLASH_FILESYSTEM = 1 + +CIRCUITPY__EVE = 1 diff --git a/ports/raspberrypi/mpconfigport.h b/ports/raspberrypi/mpconfigport.h index 743151931..77d1ff080 100644 --- a/ports/raspberrypi/mpconfigport.h +++ b/ports/raspberrypi/mpconfigport.h @@ -27,6 +27,8 @@ #ifndef __INCLUDED_MPCONFIGPORT_H #define __INCLUDED_MPCONFIGPORT_H +#define MICROPY_PY_SYS_PLATFORM "RP2040" + #define CIRCUITPY_INTERNAL_NVM_SIZE 0 #define CIRCUITPY_DEFAULT_STACK_SIZE (24*1024) |
