Combine the 4MB and 16MB "PIMORONI_PICOLIPO" variants into a single board. Signed-off-by: Phil Howard <phil@gadgetoid.com>
15 lines
473 B
C
15 lines
473 B
C
// https://shop.pimoroni.com/products/pimoroni-pico-lipo?variant=39386149093459
|
|
|
|
#ifndef MICROPY_HW_BOARD_NAME
|
|
#define MICROPY_HW_BOARD_NAME "Pimoroni Pico LiPo 4MB"
|
|
#endif
|
|
#define MICROPY_HW_FLASH_STORAGE_BYTES (PICO_FLASH_SIZE_BYTES - (1 * 1024 * 1024))
|
|
|
|
#define MICROPY_HW_USB_VID (0x2E8A)
|
|
#define MICROPY_HW_USB_PID (0x1002)
|
|
|
|
#define MICROPY_HW_UART1_TX (8)
|
|
#define MICROPY_HW_UART1_RX (9)
|
|
#define MICROPY_HW_UART1_CTS (10)
|
|
#define MICROPY_HW_UART1_RTS (11)
|