6926cf8b7e
* Rfid: indala 40134 validation and decoding * Rfid: show indala info * Rfid: decoder to output comparator signal on gpio pins * Rfid: working indala 40134 decoder * HAL: added function to change rfid timer parameters on the fly * RFID: Indala reading, card detection, card verification * Rfid: indala writing
48 lines
885 B
C++
48 lines
885 B
C++
#pragma once
|
|
#include "key-info.h"
|
|
#include "rfid-reader.h"
|
|
#include "rfid-writer.h"
|
|
#include "rfid-timer-emulator.h"
|
|
#include "rfid-key.h"
|
|
#include "state-sequencer.h"
|
|
|
|
class RfidWorker {
|
|
public:
|
|
RfidWorker();
|
|
~RfidWorker();
|
|
|
|
void start_read();
|
|
bool read();
|
|
bool detect();
|
|
bool any_read();
|
|
void stop_read();
|
|
|
|
enum class WriteResult : uint8_t {
|
|
Ok,
|
|
NotWritable,
|
|
Nothing,
|
|
};
|
|
|
|
void start_write();
|
|
WriteResult write();
|
|
void stop_write();
|
|
|
|
void start_emulate();
|
|
void stop_emulate();
|
|
|
|
RfidKey key;
|
|
|
|
private:
|
|
RfidWriter writer;
|
|
RfidReader reader;
|
|
RfidTimerEmulator emulator;
|
|
|
|
WriteResult write_result;
|
|
TickSequencer* write_sequence;
|
|
|
|
void sq_write();
|
|
void sq_write_start_validate();
|
|
void sq_write_validate();
|
|
uint8_t validate_counts;
|
|
void sq_write_stop_validate();
|
|
}; |