1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00
2025-07-28 18:57:01 +02:00

24 lines
390 B
C

/*
* SPDX-FileCopyrightText: 2023 Gunar Schorcht
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @ingroup boards_esp32s3_box
* @{
*
* @file
* @brief Board specific initializations for ESP32-S3-Box
*
* @author Gunar Schorcht <gunar@schorcht.net>
*/
#include "board.h"
void board_init(void)
{
#if MODULE_ILI9341
gpio_init(LCD_BACKLIGHT, GPIO_OUT);
#endif
}