 3114a2d4b8
			
		
	
	
		3114a2d4b8
		
			
		
	
	
	
	
		
			
			* Add cscope db generation * Add api-hal-irda, TIM2: HAL->LL * Add libirda: pwm decoding * Universal state machine * Add irda decoder library * Move IRDA capture to standalone tool * Add encoder/decoder samsung32, NEC, fix bugs * Port current App to new Irda lib * Fix clang format for test data * Port IRDA api-hal to f6 Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			562 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			562 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| #include "irda.h"
 | |
| 
 | |
| 
 | |
| typedef struct {
 | |
|     uint32_t bit1_mark;
 | |
|     uint32_t bit1_space;
 | |
|     uint32_t bit0_mark;
 | |
|     uint32_t bit0_space;
 | |
|     float duty_cycle;
 | |
|     uint32_t carrier_frequency;
 | |
| } IrdaEncoderTimings;
 | |
| 
 | |
| 
 | |
| void irda_encode_byte(const IrdaEncoderTimings *timings, uint8_t data);
 | |
| void irda_encode_bit(const IrdaEncoderTimings *timings, bool bit);
 | |
| void irda_encode_space(const IrdaEncoderTimings *timings, uint32_t duration);
 | |
| void irda_encode_mark(const IrdaEncoderTimings *timings, uint32_t duration);
 | |
| 
 |