Merge pull request #7362 from Neradoc/add-status-led-pico

Add GP25 as status LED on the Raspberry Pi Pico
This commit is contained in:
Scott Shawcroft 2022-12-20 06:48:40 -08:00 committed by GitHub
commit e7ded6d684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#define MICROPY_HW_BOARD_NAME "Raspberry Pi Pico"
#define MICROPY_HW_MCU_NAME "rp2040"
#define MICROPY_HW_LED_STATUS (&pin_GPIO25)
#define CIRCUITPY_BOARD_I2C (1)
#define CIRCUITPY_BOARD_I2C_PIN {{.scl = &pin_GPIO5, .sda = &pin_GPIO4}}