 4d6b170769
			
		
	
	
		4d6b170769
		
			
		
	
	
	
	
		
			
			* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			495 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			495 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| #include <stdint.h>
 | |
| #include <atomic>
 | |
| #include "protocols/protocol_hid_h10301.h"
 | |
| 
 | |
| class DecoderHID26 {
 | |
| public:
 | |
|     bool read(uint8_t* data, uint8_t data_size);
 | |
|     void process_front(bool polarity, uint32_t time);
 | |
|     DecoderHID26();
 | |
| 
 | |
| private:
 | |
|     uint32_t last_pulse_time = 0;
 | |
|     bool last_pulse;
 | |
|     uint8_t pulse_count;
 | |
| 
 | |
|     uint32_t stored_data[3] = {0, 0, 0};
 | |
|     void store_data(bool data);
 | |
| 
 | |
|     std::atomic<bool> ready;
 | |
| 
 | |
|     void reset_state();
 | |
|     ProtocolHID10301 hid;
 | |
| };
 |