* 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
		
			
				
	
	
		
			25 lines
		
	
	
		
			539 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			539 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
#include <stdint.h>
 | 
						|
#include <limits.h>
 | 
						|
#include <atomic>
 | 
						|
#include "protocols/protocol-indala-40134.h"
 | 
						|
 | 
						|
class DecoderIndala {
 | 
						|
public:
 | 
						|
    bool read(uint8_t* data, uint8_t data_size);
 | 
						|
    void process_front(bool polarity, uint32_t time);
 | 
						|
 | 
						|
    void process_internal(bool polarity, uint32_t time, uint64_t* data);
 | 
						|
 | 
						|
    DecoderIndala();
 | 
						|
 | 
						|
private:
 | 
						|
    void reset_state();
 | 
						|
 | 
						|
    uint64_t raw_data;
 | 
						|
    uint64_t cursed_raw_data;
 | 
						|
 | 
						|
    std::atomic<bool> ready;
 | 
						|
    std::atomic<bool> cursed_data_valid;
 | 
						|
    ProtocolIndala40134 indala;
 | 
						|
}; |