mirror of
https://github.com/thelsing/knx.git
synced 2026-03-13 02:22:13 +01:00
added ESP32 platform (#30)
* added ESP32 platform * fixed typo in comments
This commit is contained in:
committed by
thelsing
parent
2b7e24cab0
commit
14d2da82f1
@@ -7,6 +7,8 @@ KnxFacade<SamdPlatform, Bau07B0> knx;
|
||||
#define ICACHE_RAM_ATTR
|
||||
#elif ARDUINO_ARCH_ESP8266
|
||||
KnxFacade<EspPlatform, Bau57B0> knx;
|
||||
#elif ARDUINO_ARCH_ESP32
|
||||
KnxFacade<Esp32Platform, Bau57B0> knx;
|
||||
#elif __linux__
|
||||
#define ICACHE_RAM_ATTR
|
||||
#endif
|
||||
@@ -15,5 +17,5 @@ ICACHE_RAM_ATTR void buttonUp()
|
||||
{
|
||||
#ifndef __linux__
|
||||
knx._toogleProgMode = true;
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
Reference in New Issue
Block a user