Merge pull request #8486 from makermelissa/main

Add missing Ax pins for Qualia ESP32-S3
This commit is contained in:
Scott Shawcroft 2023-10-19 09:13:05 -07:00 committed by GitHub
commit 770f22e5a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,9 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(DEFAULT_SPI_BUS_SCK) },
{ MP_ROM_QSTR(MP_QSTR_CS), MP_ROM_PTR(&pin_GPIO15) },
{ MP_OBJ_NEW_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_GPIO17) },
{ MP_OBJ_NEW_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_GPIO16) },
// I/O expander pin numbers
{ MP_ROM_QSTR(MP_QSTR_TFT_SCK), MP_ROM_INT(0) },
{ MP_ROM_QSTR(MP_QSTR_TFT_CS), MP_ROM_INT(1) },