Skip to content
Closed
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
3 changes: 3 additions & 0 deletions ports/broadcom/qstrdefsport.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@

// qstrs specific to this port, only needed if they aren't auto-generated

// Prevent uncrustify from modifying these lines.
// *FORMAT-OFF*

// Entries for sys.path
Q(/sd)
Q(/sd/lib)
4 changes: 2 additions & 2 deletions ports/espressif/boards/adafruit_feather_esp32s2_tft/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void board_init(void) {

common_hal_busio_spi_never_reset(spi);

displayio_fourwire_obj_t* bus = &displays[0].fourwire_bus;
displayio_fourwire_obj_t *bus = &displays[0].fourwire_bus;
bus->base.type = &displayio_fourwire_type;

common_hal_displayio_fourwire_construct(
Expand All @@ -99,7 +99,7 @@ void board_init(void) {
0, // polarity
0 // phase
);
displayio_display_obj_t* display = &displays[0].display;
displayio_display_obj_t *display = &displays[0].display;
display->base.type = &displayio_display_type;

// workaround as board_init() is called before reset_port() in main.c
Expand Down