Add support for Gallagher tags (#1680)

* Add Gallagher protocol
This commit is contained in:
Sebastian Mauer
2022-09-02 12:15:34 +01:00
committed by GitHub
parent 0ee4573a65
commit 10b0a611cf
4 changed files with 307 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include "protocol_jablotron.h"
#include "protocol_paradox.h"
#include "protocol_pac_stanley.h"
#include "protocol_gallagher.h"
const ProtocolBase* lfrfid_protocols[] = {
[LFRFIDProtocolEM4100] = &protocol_em4100,
@@ -29,4 +30,5 @@ const ProtocolBase* lfrfid_protocols[] = {
[LFRFIDProtocolJablotron] = &protocol_jablotron,
[LFRFIDProtocolParadox] = &protocol_paradox,
[LFRFIDProtocolPACStanley] = &protocol_pac_stanley,
[LFRFIDProtocolGallagher] = &protocol_gallagher,
};