Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feather RP2040 ThinkInk update #7927

Merged
merged 3 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MICROPY_HW_BOARD_NAME "Adafruit Feather RP2040 EPD"
#define MICROPY_HW_BOARD_NAME "Adafruit Feather RP2040 ThinkInk"
#define MICROPY_HW_MCU_NAME "rp2040"

#define CIRCUITPY_STATUS_LED_POWER (&pin_GPIO20)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
USB_VID = 0x239A
USB_PID = 0x812C
USB_PRODUCT = "Feather RP2040 EPD"
USB_PRODUCT = "Feather RP2040 ThinkInk"
USB_MANUFACTURER = "Adafruit"

CHIP_VARIANT = RP2040
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {

{ MP_ROM_QSTR(MP_QSTR_D4), MP_ROM_PTR(&pin_GPIO4) },
{ MP_ROM_QSTR(MP_QSTR_BOOT), MP_ROM_PTR(&pin_GPIO7) },
{ MP_ROM_QSTR(MP_QSTR_BUTTON), MP_ROM_PTR(&pin_GPIO7) },

{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_GPIO2) },
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_GPIO3) },
Expand Down