ci: solve public headers errors

This commit is contained in:
Renz Christian Bagaporo
2020-01-27 11:43:08 +08:00
parent b675df4b08
commit 16e0c93e40
49 changed files with 359 additions and 17 deletions

View File

@@ -17,6 +17,10 @@
#include "esp_phy_init.h"
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
// constrain a value between 'low' and 'high', inclusive
#define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val)
@@ -144,5 +148,9 @@ static const esp_phy_init_data_t phy_init_data= { {
static const char phy_init_magic_post[] = PHY_INIT_MAGIC;
#ifdef __cplusplus
}
#endif
#endif /* PHY_INIT_DATA_H */