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
15 lines
220 B
C++
15 lines
220 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <atomic>
|
|
|
|
class DecoderGpioOut {
|
|
public:
|
|
void process_front(bool polarity, uint32_t time);
|
|
|
|
DecoderGpioOut();
|
|
~DecoderGpioOut();
|
|
|
|
private:
|
|
void reset_state();
|
|
};
|