Skip to content

Commit

Permalink
Merge pull request #320 from adafruit/sense-tft
Browse files Browse the repository at this point in the history
add & enable DISPLAY_VSENSOR_PIN if available (required for sense tft)
  • Loading branch information
hathach committed Jan 29, 2024
2 parents 64d8e34 + 59df4f9 commit 2e6c877
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/boards/boards.c
Expand Up @@ -250,6 +250,11 @@ void board_display_init(void) {
//------------- Display Init -------------//
nrf_gpio_cfg_output(DISPLAY_PIN_DC);

#if defined(DISPLAY_VSENSOR_PIN) && DISPLAY_VSENSOR_PIN >= 0
nrf_gpio_cfg_output(DISPLAY_VSENSOR_PIN);
nrf_gpio_pin_write(DISPLAY_VSENSOR_PIN, DISPLAY_VSENSOR_ON);
#endif

#if defined(DISPLAY_PIN_RST) && DISPLAY_PIN_RST >= 0
nrf_gpio_cfg_output(DISPLAY_PIN_RST);
nrf_gpio_pin_clear(DISPLAY_PIN_RST);
Expand Down Expand Up @@ -771,4 +776,4 @@ static void tft_controller_init(void) {
}
}

#endif
#endif
5 changes: 5 additions & 0 deletions src/boards/feather_nrf52840_sense_tft/board.h
Expand Up @@ -50,6 +50,11 @@
//--------------------------------------------------------------------+
// Display
//--------------------------------------------------------------------+

// VSensor required to power the display
#define DISPLAY_VSENSOR_PIN _PINNUM(1, 7)
#define DISPLAY_VSENSOR_ON 1

#define DISPLAY_CONTROLLER_ST7789

#define DISPLAY_PIN_SCK _PINNUM(0, 26)
Expand Down

0 comments on commit 2e6c877

Please sign in to comment.