733094aead
The RP2040 is new microcontroller from Raspberry Pi that features two Cortex M0s and eight PIO state machines that are good for crunching lots of data. It has 264k RAM and a built in UF2 bootloader too. Datasheet: https://pico.raspberrypi.org/files/rp2040_datasheet.pdf
16 lines
449 B
C
16 lines
449 B
C
// LEDs
|
|
// #define MICROPY_HW_LED_STATUS (&pin_PA17)
|
|
|
|
#define MICROPY_HW_BOARD_NAME "Raspberry Pi Pico"
|
|
#define MICROPY_HW_MCU_NAME "rp2040"
|
|
|
|
// #define DEFAULT_I2C_BUS_SCL (&pin_PA23)
|
|
// #define DEFAULT_I2C_BUS_SDA (&pin_PA22)
|
|
|
|
// #define DEFAULT_SPI_BUS_SCK (&pin_PB11)
|
|
// #define DEFAULT_SPI_BUS_MOSI (&pin_PB10)
|
|
// #define DEFAULT_SPI_BUS_MISO (&pin_PA12)
|
|
|
|
// #define DEFAULT_UART_BUS_RX (&pin_PA11)
|
|
// #define DEFAULT_UART_BUS_TX (&pin_PA10)
|