mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
104 lines
2.5 KiB
C
104 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2022 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_esp32s3_devkit
|
|
* @brief Board definitions for ESP32-S3-DevKit boards
|
|
* @{
|
|
*
|
|
* The board definitions in this file are valid for Espressif
|
|
* ESP32-S3-DevKitx boards that use one of the following modules:
|
|
*
|
|
* - ESP32-S3-MINI-1x module (ESP32-S3-DevKitM-1 board)
|
|
* - ESP32-S3-WROOM-1x module (ESP32-S3-DevKitC-1 board)
|
|
* - ESP32-S3-WROOM-2x module (ESP32-S3-DevKitC-1 board)
|
|
*
|
|
* where x stands for the module version with and without U
|
|
* (external antenna connector).
|
|
*
|
|
* Any modifications required for specific applications
|
|
* can be overridden by \ref esp32_application_specific_configurations
|
|
* "application-specific board configuration".
|
|
*
|
|
* @file
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
|
*/
|
|
|
|
#ifndef BOARD_H
|
|
#define BOARD_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* @name Button pin definitions
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Default button GPIO pin definition
|
|
*
|
|
* ESP32-S3-DevKit boards have a BOOT button connected to GPIO0, which can be
|
|
* used as button during normal operation. Since the GPIO0 pin is pulled up,
|
|
* the button signal is inverted, i.e., pressing the button will give a
|
|
* low signal.
|
|
*/
|
|
#define BTN0_PIN GPIO0
|
|
|
|
/**
|
|
* @brief Default button GPIO mode definition
|
|
*/
|
|
#define BTN0_MODE GPIO_IN_PU
|
|
|
|
/**
|
|
* @brief Default interrupt flank definition for the button GPIO
|
|
*/
|
|
#ifndef BTN0_INT_FLANK
|
|
#define BTN0_INT_FLANK GPIO_FALLING
|
|
#endif
|
|
|
|
/**
|
|
* @brief Definition for compatibility with previous versions
|
|
*/
|
|
#define BUTTON0_PIN BTN0_PIN
|
|
|
|
/** @} */
|
|
|
|
/**
|
|
* @name LED (on-board) configuration
|
|
*
|
|
* ESP32-S3-DevKit boards have a SK68XXMINI-HS smart RGB LED on-board connected
|
|
* to either
|
|
*
|
|
* - GPIO48 (ESP32-S3-DevKitC-1 revision 1.0 and all ESP32-S3-DevKitM-1 boards) or
|
|
* - GPIO38 (ESP32-S3-DevKitC-1 revision 1.1).
|
|
*
|
|
* The WS281x driver module `ws281x` can be used for control.
|
|
* @{
|
|
*/
|
|
#ifndef WS281X_PARAM_PIN
|
|
#define WS281X_PARAM_PIN (GPIO48) /**< GPIO pin connected to the data pin */
|
|
#endif
|
|
#ifndef WS281X_PARAM_NUMOF
|
|
#define WS281X_PARAM_NUMOF (1U) /**< Number of LEDs chained */
|
|
#endif
|
|
/** @} */
|
|
|
|
/* include common board definitions as last step */
|
|
#include "board_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif
|
|
|
|
#endif /* BOARD_H */
|
|
/** @} */
|