mirror of
https://github.com/espressif/esp-idf
synced 2025-04-21 14:01:33 -04:00
- Renamed usb_otg_periph.h/c to usb_dwc_periph.h/c to match naming convention of other DWC OTG related files - Added compatibility header for usb_otg_periph.h
13 lines
285 B
C
13 lines
285 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* Todo: Remove in ESP-IDF v6.0 (IDF-9052) */
|
|
#warning "This header is deprecated, please use usb_dwc_periph.h instead"
|
|
|
|
#include "soc/usb_dwc_periph.h"
|