diff options
| author | Jeff Epler <jepler@gmail.com> | 2021-03-02 19:02:38 -0600 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2021-03-02 19:02:38 -0600 |
| commit | b27afad9cb8070b2ac6f54638479a3bb167ab530 (patch) | |
| tree | 5e0d35755a03b5477d29b8fccf60d4a94c2bbfa5 | |
| parent | 8bfd308d37fd40334091188371ac4b9e4d6e176f (diff) | |
move LED to the right spot in the file
| -rw-r--r-- | ports/raspberrypi/boards/adafruit_feather_rp2040/pins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/raspberrypi/boards/adafruit_feather_rp2040/pins.c b/ports/raspberrypi/boards/adafruit_feather_rp2040/pins.c index 0144bf492..cac08cb64 100644 --- a/ports/raspberrypi/boards/adafruit_feather_rp2040/pins.c +++ b/ports/raspberrypi/boards/adafruit_feather_rp2040/pins.c @@ -25,9 +25,9 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = { { MP_ROM_QSTR(MP_QSTR_D11), MP_ROM_PTR(&pin_GPIO11) }, { MP_ROM_QSTR(MP_QSTR_D12), MP_ROM_PTR(&pin_GPIO12) }, { MP_ROM_QSTR(MP_QSTR_D13), MP_ROM_PTR(&pin_GPIO13) }, + { MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_GPIO13) }, { MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(&pin_GPIO16) }, - { MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_GPIO13) }, { MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) }, { MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) }, |
