mirror of
https://github.com/thelsing/knx.git
synced 2025-08-17 13:47:28 +02:00
Fix knx_facade.h
This commit is contained in:
parent
c70e31e20b
commit
bd93027173
@ -7,6 +7,7 @@
|
|||||||
#include "samd_platform.h"
|
#include "samd_platform.h"
|
||||||
#include "knx/bau07B0.h"
|
#include "knx/bau07B0.h"
|
||||||
#include "knx/bau27B0.h"
|
#include "knx/bau27B0.h"
|
||||||
|
#include "knx/bau2920.h"
|
||||||
#elif ARDUINO_ARCH_ESP8266
|
#elif ARDUINO_ARCH_ESP8266
|
||||||
#include "esp_platform.h"
|
#include "esp_platform.h"
|
||||||
#include "knx/bau57B0.h"
|
#include "knx/bau57B0.h"
|
||||||
@ -15,6 +16,7 @@
|
|||||||
#include "esp32_platform.h"
|
#include "esp32_platform.h"
|
||||||
#include "knx/bau07B0.h"
|
#include "knx/bau07B0.h"
|
||||||
#include "knx/bau57B0.h"
|
#include "knx/bau57B0.h"
|
||||||
|
#include "knx/bau091A.h"
|
||||||
#elif ARDUINO_ARCH_STM32
|
#elif ARDUINO_ARCH_STM32
|
||||||
#include "stm32_platform.h"
|
#include "stm32_platform.h"
|
||||||
#include "knx/bau07B0.h"
|
#include "knx/bau07B0.h"
|
||||||
@ -266,10 +268,12 @@ template <class P, class B> class KnxFacade : private SaveRestore
|
|||||||
return _bau.parameters().getInt(addr);
|
return _bau.parameters().getInt(addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (MASK_VERSION == 0x07B0) || (MASK_VERSION == 0x27B0) || (MASK_VERSION == 0x57B0)
|
||||||
GroupObject& getGroupObject(uint16_t goNr)
|
GroupObject& getGroupObject(uint16_t goNr)
|
||||||
{
|
{
|
||||||
return _bau.groupObjectTable().get(goNr);
|
return _bau.groupObjectTable().get(goNr);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void restart(uint16_t individualAddress)
|
void restart(uint16_t individualAddress)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user