No IP version yet

This commit is contained in:
OnlineCaveman 2022-10-25 16:19:53 +02:00
parent 76762571ea
commit 7373ab0a87
2 changed files with 4 additions and 4 deletions

View File

@ -40,8 +40,8 @@
// predefined global instance for TP or IP // predefined global instance for TP or IP
#if MASK_VERSION == 0x07B0 #if MASK_VERSION == 0x07B0
KnxFacade<Samd51Platform, Bau07B0> knx(buttonEvent); KnxFacade<Samd51Platform, Bau07B0> knx(buttonEvent);
#elif MASK_VERSION == 0x57B0 // #elif MASK_VERSION == 0x57B0
KnxFacade<Samd51Platform, Bau57B0> knx(buttonEvent); // KnxFacade<Samd51Platform, Bau57B0> knx(buttonEvent);
#else #else
#error "Mask version not supported on SAMD51" #error "Mask version not supported on SAMD51"
#endif #endif

View File

@ -477,8 +477,8 @@ template <class P, class B> class KnxFacade : private SaveRestore
// predefined global instance for TP or IP // predefined global instance for TP or IP
#if MASK_VERSION == 0x07B0 #if MASK_VERSION == 0x07B0
extern KnxFacade<Samd51Platform, Bau07B0> knx; extern KnxFacade<Samd51Platform, Bau07B0> knx;
#elif MASK_VERSION == 0x57B0 // #elif MASK_VERSION == 0x57B0
extern KnxFacade<Samd51Platform, Bau57B0> knx; // extern KnxFacade<Samd51Platform, Bau57B0> knx;
#else #else
#error "Mask version not supported on SAMD51" #error "Mask version not supported on SAMD51"
#endif #endif