[FL-1057] Low frequency RFID app [HID Encoder] (#445)

* App Lfrfid: hid26 timer stage
* App Lfrfid: hid26 encoder
* fully removed old lf-rfid app
* fix codeowners
This commit is contained in:
SG
2021-05-05 17:50:19 +10:00
committed by GitHub
parent 46bc515c6a
commit 469e2dffec
5 changed files with 127 additions and 76 deletions

View File

@@ -14,6 +14,11 @@ public:
void get_next(bool* polarity, uint16_t* period, uint16_t* pulse) final;
private:
uint64_t card_data;
static const uint8_t card_data_max = 3;
uint32_t card_data[card_data_max];
uint8_t card_data_index;
uint8_t bit_index;
void write_bit(bool bit, uint8_t position);
void write_raw_bit(bool bit, uint8_t position);
};