 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>
		
			
				
	
	
		
			103 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "common/infrared_common_i.h"
 | |
| #include "infrared.h"
 | |
| #include "infrared_protocol_defs_i.h"
 | |
| #include <stdbool.h>
 | |
| #include <stdint.h>
 | |
| #include <furi.h>
 | |
| #include "../infrared_i.h"
 | |
| 
 | |
| InfraredMessage* infrared_decoder_nec_check_ready(void* ctx) {
 | |
|     return infrared_common_decoder_check_ready(ctx);
 | |
| }
 | |
| 
 | |
| bool infrared_decoder_nec_interpret(InfraredCommonDecoder* decoder) {
 | |
|     furi_assert(decoder);
 | |
| 
 | |
|     bool result = false;
 | |
| 
 | |
|     if(decoder->databit_cnt == 32) {
 | |
|         uint8_t address = decoder->data[0];
 | |
|         uint8_t address_inverse = decoder->data[1];
 | |
|         uint8_t command = decoder->data[2];
 | |
|         uint8_t command_inverse = decoder->data[3];
 | |
|         uint8_t inverse_command_inverse = (uint8_t)~command_inverse;
 | |
|         uint8_t inverse_address_inverse = (uint8_t)~address_inverse;
 | |
|         if((command == inverse_command_inverse) && (address == inverse_address_inverse)) {
 | |
|             decoder->message.protocol = InfraredProtocolNEC;
 | |
|             decoder->message.address = address;
 | |
|             decoder->message.command = command;
 | |
|             decoder->message.repeat = false;
 | |
|             result = true;
 | |
|         } else {
 | |
|             decoder->message.protocol = InfraredProtocolNECext;
 | |
|             decoder->message.address = decoder->data[0] | (decoder->data[1] << 8);
 | |
|             decoder->message.command = decoder->data[2] | (decoder->data[3] << 8);
 | |
|             decoder->message.repeat = false;
 | |
|             result = true;
 | |
|         }
 | |
|     } else if(decoder->databit_cnt == 42) {
 | |
|         uint32_t* data1 = (void*)decoder->data;
 | |
|         uint16_t* data2 = (void*)(data1 + 1);
 | |
|         uint16_t address = *data1 & 0x1FFF;
 | |
|         uint16_t address_inverse = (*data1 >> 13) & 0x1FFF;
 | |
|         uint16_t command = ((*data1 >> 26) & 0x3F) | ((*data2 & 0x3) << 6);
 | |
|         uint16_t command_inverse = (*data2 >> 2) & 0xFF;
 | |
| 
 | |
|         if((address == (~address_inverse & 0x1FFF)) && (command == (~command_inverse & 0xFF))) {
 | |
|             decoder->message.protocol = InfraredProtocolNEC42;
 | |
|             decoder->message.address = address;
 | |
|             decoder->message.command = command;
 | |
|             decoder->message.repeat = false;
 | |
|             result = true;
 | |
|         } else {
 | |
|             decoder->message.protocol = InfraredProtocolNEC42ext;
 | |
|             decoder->message.address = address | (address_inverse << 13);
 | |
|             decoder->message.command = command | (command_inverse << 8);
 | |
|             decoder->message.repeat = false;
 | |
|             result = true;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| // timings start from Space (delay between message and repeat)
 | |
| InfraredStatus infrared_decoder_nec_decode_repeat(InfraredCommonDecoder* decoder) {
 | |
|     furi_assert(decoder);
 | |
| 
 | |
|     float preamble_tolerance = decoder->protocol->timings.preamble_tolerance;
 | |
|     uint32_t bit_tolerance = decoder->protocol->timings.bit_tolerance;
 | |
|     InfraredStatus status = InfraredStatusError;
 | |
| 
 | |
|     if(decoder->timings_cnt < 4) return InfraredStatusOk;
 | |
| 
 | |
|     if((decoder->timings[0] > INFRARED_NEC_REPEAT_PAUSE_MIN) &&
 | |
|        (decoder->timings[0] < INFRARED_NEC_REPEAT_PAUSE_MAX) &&
 | |
|        MATCH_TIMING(decoder->timings[1], INFRARED_NEC_REPEAT_MARK, preamble_tolerance) &&
 | |
|        MATCH_TIMING(decoder->timings[2], INFRARED_NEC_REPEAT_SPACE, preamble_tolerance) &&
 | |
|        MATCH_TIMING(decoder->timings[3], decoder->protocol->timings.bit1_mark, bit_tolerance)) {
 | |
|         status = InfraredStatusReady;
 | |
|         decoder->timings_cnt = 0;
 | |
|     } else {
 | |
|         status = InfraredStatusError;
 | |
|     }
 | |
| 
 | |
|     return status;
 | |
| }
 | |
| 
 | |
| void* infrared_decoder_nec_alloc(void) {
 | |
|     return infrared_common_decoder_alloc(&protocol_nec);
 | |
| }
 | |
| 
 | |
| InfraredMessage* infrared_decoder_nec_decode(void* decoder, bool level, uint32_t duration) {
 | |
|     return infrared_common_decode(decoder, level, duration);
 | |
| }
 | |
| 
 | |
| void infrared_decoder_nec_free(void* decoder) {
 | |
|     infrared_common_decoder_free(decoder);
 | |
| }
 | |
| 
 | |
| void infrared_decoder_nec_reset(void* decoder) {
 | |
|     infrared_common_decoder_reset(decoder);
 | |
| }
 |