Added the RF (0x27B0)

Added checks for RF 0x27B0 as that should work ootb I suppose.

Builds and uploads successfully.
Gives the debug output "ERROR, RF transceiver not responding" since I have no RF hw to test.

Same goes for the TP 0x07B0. Build and uploads successfully.
Gives the debug output "ERROR, TPUART not responding" since no I have no TP uart hw to test.
This commit is contained in:
OnlineCaveman 2022-10-25 17:24:55 +02:00
parent 7373ab0a87
commit d24f6de36f
2 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,8 @@
// predefined global instance for TP or IP
#if MASK_VERSION == 0x07B0
KnxFacade<Samd51Platform, Bau07B0> knx(buttonEvent);
#elif MASK_VERSION == 0x27B0
KnxFacade<Samd51Platform, Bau2920> knx(buttonEvent);
// #elif MASK_VERSION == 0x57B0
// KnxFacade<Samd51Platform, Bau57B0> knx(buttonEvent);
#else

View File

@ -477,6 +477,8 @@ template <class P, class B> class KnxFacade : private SaveRestore
// predefined global instance for TP or IP
#if MASK_VERSION == 0x07B0
extern KnxFacade<Samd51Platform, Bau07B0> knx;
#elif MASK_VERSION == 0x27B0
extern KnxFacade<Samd51Platform, Bau27B0> knx;
// #elif MASK_VERSION == 0x57B0
// extern KnxFacade<Samd51Platform, Bau57B0> knx;
#else