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
10 lines
162 B
Makefile
10 lines
162 B
Makefile
USB_VID = 0x239A
|
|
USB_PID = 0x80F4
|
|
USB_PRODUCT = "Pico"
|
|
USB_MANUFACTURER = "Raspberry Pi"
|
|
|
|
CHIP_VARIANT = RP2040
|
|
CHIP_FAMILY = rp2
|
|
|
|
INTERNAL_FLASH_FILESYSTEM = 1
|
|
|