mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 10:03:50 +01:00
28 lines
519 B
C
28 lines
519 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Gunar Schorcht
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_esp32s3_wt32_sc01_plus
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific initializations for ESP32-S3 WT32-SC01 Plus
|
|
*
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
|
*/
|
|
|
|
#include "board.h"
|
|
|
|
void board_init(void)
|
|
{
|
|
#if MODULE_ST77XX
|
|
gpio_init(LCD_BACKLIGHT, GPIO_OUT);
|
|
#endif
|
|
#if MODULE_FT5X06
|
|
gpio_init(FT5X06_PARAM_RST_PIN, GPIO_OUT);
|
|
gpio_set(FT5X06_PARAM_RST_PIN);
|
|
#endif
|
|
}
|