mirror of
https://github.com/esphome/esphome.git
synced 2024-12-18 19:44:53 +01:00
add USE_ESP32 define checks
This commit is contained in:
parent
bccb306fff
commit
e5eb4f1560
3 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
#include "espnow.h"
|
#include "espnow.h"
|
||||||
|
|
||||||
|
#if defined(USE_ESP32)
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
#include "esp_mac.h"
|
#include "esp_mac.h"
|
||||||
|
@ -388,3 +390,5 @@ ESPNowComponent *global_esp_now = nullptr;
|
||||||
|
|
||||||
} // namespace espnow
|
} // namespace espnow
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include "espnow_packet.h"
|
#include "espnow_packet.h"
|
||||||
|
#if defined(USE_ESP32)
|
||||||
|
|
||||||
#include "esphome/core/log.h"
|
#include "esphome/core/log.h"
|
||||||
|
|
||||||
|
@ -43,3 +44,5 @@ bool ESPNowPacket::is_valid() {
|
||||||
this->crc16 = crc;
|
this->crc16 = crc;
|
||||||
return valid;
|
return valid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// #if defined(USE_ESP32)
|
#if defined(USE_ESP32)
|
||||||
|
|
||||||
#include "esphome/core/automation.h"
|
#include "esphome/core/automation.h"
|
||||||
#include "esphome/core/component.h"
|
#include "esphome/core/component.h"
|
||||||
|
@ -100,3 +100,5 @@ struct ESPNowPacket {
|
||||||
|
|
||||||
} // namespace espnow
|
} // namespace espnow
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue