Skip to content

Commit

Permalink
Fix ifdef for 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 committed Sep 19, 2024
1 parent a715dfb commit 771db6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ksf/ksConstants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
* https://github.com/cziter15/ksIotFrameworkLib/blob/master/LICENSE
*/

#if ESP32
#if defined(ESP32)
#include <WiFi.h>
#include <esp_phy_init.h>
#include <nvs_flash.h>
#include <esp_task_wdt.h>
#include <esp_arduino_version.h>
#include "sdkconfig.h"
#elif ESP8266
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#else
#error Platform not implemented.
Expand Down

0 comments on commit 771db6a

Please sign in to comment.