mirror of
https://github.com/espressif/esp-idf
synced 2025-04-02 21:00:10 -04:00
peripheral enable/disable usually should be managed by driver itself, so make it as espressif private APIs, not recommended for user to use it in application code. However, if user want to re-write the driver or ports to other platform, this is still possible by including the header in this way: "esp_private/peripheral_ctrl.h"
9 lines
268 B
C
9 lines
268 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
#warning driver/periph_ctrl.h header is no longer used, and will be removed in future versions.
|
|
#include "esp_private/periph_ctrl.h"
|