Skip to content

Commit

Permalink
uncrustify fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Dec 6, 2021
1 parent da1c330 commit c43e0bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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

0 comments on commit c43e0bd

Please sign in to comment.