 fbccb9fbaf
			
		
	
	
		fbccb9fbaf
		
			
		
	
	
	
	
		
			
			* IRDA HAL: Fill buffer refactoring * IRDA: Add SIRC protocol * IRDA: correct adr/cmd bit length * Disable Unit tests Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../irda_i.h"
 | |
| #include "irda_protocol_defs_i.h"
 | |
| 
 | |
| static const IrdaProtocolSpecification irda_nec_protocol_specification = {
 | |
|       .name = "NEC",
 | |
|       .address_length = 8,
 | |
|       .command_length = 8,
 | |
|       .frequency = IRDA_COMMON_CARRIER_FREQUENCY,
 | |
|       .duty_cycle = IRDA_COMMON_DUTY_CYCLE,
 | |
| };
 | |
| 
 | |
| static const IrdaProtocolSpecification irda_necext_protocol_specification = {
 | |
|       .name = "NECext",
 | |
|       .address_length = 16,
 | |
|       .command_length = 8,
 | |
|       .frequency = IRDA_COMMON_CARRIER_FREQUENCY,
 | |
|       .duty_cycle = IRDA_COMMON_DUTY_CYCLE,
 | |
| };
 | |
| 
 | |
| const IrdaProtocolSpecification* irda_nec_get_spec(IrdaProtocol protocol) {
 | |
|     if (protocol == IrdaProtocolNEC)
 | |
|         return &irda_nec_protocol_specification;
 | |
|     else if (protocol == IrdaProtocolNECext)
 | |
|         return &irda_necext_protocol_specification;
 | |
|     else
 | |
|         return NULL;
 | |
| }
 | |
| 
 |