-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19939: boards/stm32f723e-disco: enable ST7789 display r=benpicco a=gschorcht ### Contribution description This PR enables the ST7789 display and the touch panel for the `stm32f723e-disco`. The PR requires PR #19937. ### Testing procedure ``` BOARD=sstm32f723e-disco make -j8 -C tests/drivers/st77xx ``` should work. ### Issues/PRs references Depends on PR #19937 Co-authored-by: Gunar Schorcht <[email protected]>
- Loading branch information
Showing
6 changed files
with
126 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (C) 2023 Gunar Schorcht | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup boards_stm32f723e-disco | ||
* @{ | ||
* | ||
* @file | ||
* @brief Board specific initializations for the STM32F723E-DISCO board | ||
* | ||
* @author Gunar Schorcht <[email protected]> | ||
*/ | ||
|
||
#include "board.h" | ||
|
||
void board_init(void) | ||
{ | ||
#if MODULE_ST77XX | ||
/* initialize the pin for the HIGH active LCD_BL signal */ | ||
gpio_init(BACKLIGHT_PIN, GPIO_OUT); | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters