 75e9de12b0
			
		
	
	
		75e9de12b0
		
			
		
	
	
	
	
		
			
			* Better Infrared protocol file structure * Rename InfraredProtocolSpec to InfraredProtocolVariant * Slightly better names * Add repeat count field to protocol variant description * Repeat the signal the appropriate number of times when brute-forcing * Repeat the signal the appropriate number of times when sending via worker * Better signal count logic in infrared_transmit * Better variable names * Convert some raw signals to messages in tv.ir Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "../common/infrared_common_i.h"
 | |
| 
 | |
| #define INFRARED_NEC_PREAMBLE_MARK 9000
 | |
| #define INFRARED_NEC_PREAMBLE_SPACE 4500
 | |
| #define INFRARED_NEC_BIT1_MARK 560
 | |
| #define INFRARED_NEC_BIT1_SPACE 1690
 | |
| #define INFRARED_NEC_BIT0_MARK 560
 | |
| #define INFRARED_NEC_BIT0_SPACE 560
 | |
| #define INFRARED_NEC_REPEAT_PERIOD 110000
 | |
| #define INFRARED_NEC_SILENCE INFRARED_NEC_REPEAT_PERIOD
 | |
| #define INFRARED_NEC_MIN_SPLIT_TIME INFRARED_NEC_REPEAT_PAUSE_MIN
 | |
| #define INFRARED_NEC_REPEAT_PAUSE_MIN 4000
 | |
| #define INFRARED_NEC_REPEAT_PAUSE_MAX 150000
 | |
| #define INFRARED_NEC_REPEAT_COUNT_MIN 1
 | |
| #define INFRARED_NEC_REPEAT_MARK 9000
 | |
| #define INFRARED_NEC_REPEAT_SPACE 2250
 | |
| #define INFRARED_NEC_PREAMBLE_TOLERANCE 200 // us
 | |
| #define INFRARED_NEC_BIT_TOLERANCE 120 // us
 | |
| 
 | |
| extern const InfraredCommonProtocolSpec infrared_protocol_nec;
 | |
| 
 | |
| bool infrared_decoder_nec_interpret(InfraredCommonDecoder* decoder);
 | |
| InfraredStatus infrared_decoder_nec_decode_repeat(InfraredCommonDecoder* decoder);
 | |
| InfraredStatus infrared_encoder_nec_encode_repeat(
 | |
|     InfraredCommonEncoder* encoder,
 | |
|     uint32_t* duration,
 | |
|     bool* level);
 |