1 /*
2  * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef PHY_INIT_DATA_H
8 #define PHY_INIT_DATA_H /* don't use #pragma once here, we compile this file sometimes */
9 #include "esp_phy_init.h"
10 #include "sdkconfig.h"
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 // There is no init data for H4 right now, could be added when necessary.
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* PHY_INIT_DATA_H */
23