Search found 2 matches
- Wed Nov 17, 2021 6:30 am
- Forum: Raspberry Pi microcontroller boards
- Topic: Pico Lipo 16MB, micropython only shows 7MB
- Replies: 4
- Views: 6782
Re: Pico Lipo 16MB, micropython only shows 7MB
Itis a wrong definition in the board files. #define MICROPY_HW_BOARD_NAME "Pimoroni Pico LiPo 16MB" #define MICROPY_HW_FLASH_STORAGE_BYTES (7 * 1024 * 1024) It should be 15 * 1024 * 1024 to make use of a 16MByte flash device. 1 MB is reserved for the MicroPython code itself. Thanks Robert!
- Tue Nov 16, 2021 12:04 am
- Forum: Raspberry Pi microcontroller boards
- Topic: Pico Lipo 16MB, micropython only shows 7MB
- Replies: 4
- Views: 6782
Pico Lipo 16MB, micropython only shows 7MB
Hi, I have a Pico Lipo 16MB and downloaded UF2 from: https://micropython.org/download/PIMORONI_PICOLIPO_16MB/ On checking the storage size on Thonny, it shows I only have 7MB when there should be 16MB of flash available. I have tried all the available releases. What could cause this to happen and an...