dec0ff7a10
I.e. for whichever SPI/I2C instance is PICO_DEFAULT_I2C, there's no need to set MICROPY_HW_SPIn_SCK. The only ones remaining are for the non-default instance. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
19 lines
420 B
C
19 lines
420 B
C
// https://shop.pimoroni.com/products/tiny-2040
|
|
|
|
#define MICROPY_HW_BOARD_NAME "Pimoroni Tiny 2040"
|
|
#define MICROPY_HW_FLASH_STORAGE_BYTES (7 * 1024 * 1024)
|
|
|
|
#define MICROPY_HW_USB_VID (0x16D0)
|
|
#define MICROPY_HW_USB_PID (0x08C7)
|
|
|
|
// I2C0 (non-default)
|
|
#define MICROPY_HW_I2C0_SCL (4)
|
|
#define MICROPY_HW_I2C0_SDA (5)
|
|
|
|
// RGB LED, active low
|
|
// Red LED 18
|
|
// Green LED 19
|
|
// Blue LED 20
|
|
|
|
// Boot button GPIO23
|