micropython-integration #1
Reference in New Issue
Block a user
Delete Branch "micropython-integration"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add micropython with custom board so that it only uses core0.
bla bla bla. bla!
Globaler Kommentar
@@ -0,0 +2,4 @@#define MICROPY_HW_BOARD_NAME "Raspberry Pi Pico W"// todo: We need something to check our binary size#define MICROPY_HW_FLASH_STORAGE_BYTES (848 * 1024)I think this needs a bit of clarification. Where does this number come from? Guesstimate?
This comment (and the flash storage size) originates in the upstream RPI_PICO_W board definition. Maybe we will adapt it for our usecase later, for now I would leave the upstream default.
@@ -0,0 +7,4 @@( cd lib/micropythonmake -C mpy-cross -j 16make -C ports/rp2 BOARD=TONBERRY_RPI_PICO_W BOARD_DIR=$TOPDIR/boards/RPI_PICO_W cleanmake -C ports/rp2 BOARD=TONBERRY_RPI_PICO_W BOARD_DIR=$TOPDIR/boards/RPI_PICO_W -j 16Better use only -j. Not everyone wants to build with exactly 16 threads.