1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp32/esp-idf-api/periph_ctrl.c
2022-06-23 16:12:22 +02:00

31 lines
635 B
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 cpu_esp32_esp_idf_api
* @{
*
* @file
* @brief Interface for ESP-IDF peripherals control API
*
* @author Gunar Schorcht <gunar@schorcht.net>
* @}
*/
#include "driver/periph_ctrl.h"
void esp_idf_periph_module_enable(periph_module_t periph)
{
periph_module_enable(periph);
}
void esp_idf_periph_module_disable(periph_module_t periph)
{
periph_module_disable(periph);
}