mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-02-17 05:48:33 +00:00
* lfrfid/em4100: added support for different bit rates * Format Sources Co-authored-by: Radek Pilar <radek.pilar@apollogames.com> Co-authored-by: あく <alleteam@gmail.com>
45 lines
1 KiB
C
45 lines
1 KiB
C
#pragma once
|
|
#include <toolbox/protocols/protocol.h>
|
|
#include "../tools/t5577.h"
|
|
|
|
typedef enum {
|
|
LFRFIDFeatureASK = 1 << 0, /** ASK Demodulation */
|
|
LFRFIDFeaturePSK = 1 << 1, /** PSK Demodulation */
|
|
} LFRFIDFeature;
|
|
|
|
typedef enum {
|
|
LFRFIDProtocolEM4100,
|
|
LFRFIDProtocolEM410032,
|
|
LFRFIDProtocolEM410016,
|
|
LFRFIDProtocolH10301,
|
|
LFRFIDProtocolIdteck,
|
|
LFRFIDProtocolIndala26,
|
|
LFRFIDProtocolIOProxXSF,
|
|
LFRFIDProtocolAwid,
|
|
LFRFIDProtocolFDXA,
|
|
LFRFIDProtocolFDXB,
|
|
LFRFIDProtocolHidGeneric,
|
|
LFRFIDProtocolHidExGeneric,
|
|
LFRFIDProtocolPyramid,
|
|
LFRFIDProtocolViking,
|
|
LFRFIDProtocolJablotron,
|
|
LFRFIDProtocolParadox,
|
|
LFRFIDProtocolPACStanley,
|
|
LFRFIDProtocolKeri,
|
|
LFRFIDProtocolGallagher,
|
|
LFRFIDProtocolNexwatch,
|
|
LFRFIDProtocolMax,
|
|
} LFRFIDProtocol;
|
|
|
|
extern const ProtocolBase* lfrfid_protocols[];
|
|
|
|
typedef enum {
|
|
LFRFIDWriteTypeT5577,
|
|
} LFRFIDWriteType;
|
|
|
|
typedef struct {
|
|
LFRFIDWriteType write_type;
|
|
union {
|
|
LFRFIDT5577 t5577;
|
|
};
|
|
} LFRFIDWriteRequest;
|