mirror of
https://github.com/thelsing/knx.git
synced 2025-01-21 00:05:43 +01:00
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:
parent
7373ab0a87
commit
d24f6de36f
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user