8000 Include sdkconfig before checking config values · arkhipenko/arduino-esp32@af6c3a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit af6c3a2

Browse files
authored
Include sdkconfig before checking config values
1 parent a64708f commit af6c3a2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libraries/Ethernet/src/ETH.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1919
*/
2020

21+
#include "sdkconfig.h"
2122
#ifdef CONFIG_ETH_ENABLED
2223

2324
#include "ETH.h"

libraries/Ethernet/src/ETH.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#ifndef _ETH_H_
2222
#define _ETH_H_
2323

24+
#include "sdkconfig.h"
2425
#ifdef CONFIG_ETH_ENABLED
2526

2627
#include "WiFi.h"

0 commit comments

Comments
 (0)
0