mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-11 18:33:43 +00:00
8b3d323f1b
This is a work in progress. It does not yet work.
23 lines
465 B
C
23 lines
465 B
C
/*
|
|
* SPDX-FileCopyrightText: 2016-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef PHY_INIT_DATA_H
|
|
#define PHY_INIT_DATA_H /* don't use #pragma once here, we compile this file sometimes */
|
|
#include "esp_phy_init.h"
|
|
#include "sdkconfig.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// There is no init data for ESP32H2 right now, could be added when necessary.
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PHY_INIT_DATA_H */
|