* 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>
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "pulse_protocol.h"
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
struct PulseProtocol {
 | 
						|
    void* context;
 | 
						|
    PulseProtocolPulseCallback pulse_cb;
 | 
						|
    PulseProtocolResetCallback reset_cb;
 | 
						|
    PulseProtocolGetDataCallback get_data_cb;
 | 
						|
    PulseProtocolDecodedCallback decoded_cb;
 | 
						|
};
 | 
						|
 | 
						|
PulseProtocol* pulse_protocol_alloc() {
 | 
						|
    PulseProtocol* protocol = malloc(sizeof(PulseProtocol));
 | 
						|
    memset(protocol, 0, sizeof(PulseProtocol));
 | 
						|
    return protocol;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_set_context(PulseProtocol* protocol, void* context) {
 | 
						|
    protocol->context = context;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_set_pulse_cb(PulseProtocol* protocol, PulseProtocolPulseCallback callback) {
 | 
						|
    protocol->pulse_cb = callback;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_set_reset_cb(PulseProtocol* protocol, PulseProtocolResetCallback callback) {
 | 
						|
    protocol->reset_cb = callback;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_set_get_data_cb(PulseProtocol* protocol, PulseProtocolGetDataCallback callback) {
 | 
						|
    protocol->get_data_cb = callback;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_set_decoded_cb(PulseProtocol* protocol, PulseProtocolDecodedCallback callback) {
 | 
						|
    protocol->decoded_cb = callback;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_free(PulseProtocol* protocol) {
 | 
						|
    free(protocol);
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_process_pulse(PulseProtocol* protocol, bool polarity, uint32_t length) {
 | 
						|
    if(protocol->pulse_cb != NULL) {
 | 
						|
        protocol->pulse_cb(protocol->context, polarity, length);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_reset(PulseProtocol* protocol) {
 | 
						|
    if(protocol->reset_cb != NULL) {
 | 
						|
        protocol->reset_cb(protocol->context);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
bool pulse_protocol_decoded(PulseProtocol* protocol) {
 | 
						|
    bool result = false;
 | 
						|
    if(protocol->decoded_cb != NULL) {
 | 
						|
        result = protocol->decoded_cb(protocol->context);
 | 
						|
    }
 | 
						|
    return result;
 | 
						|
}
 | 
						|
 | 
						|
void pulse_protocol_get_data(PulseProtocol* protocol, uint8_t* data, size_t length) {
 | 
						|
    if(protocol->get_data_cb != NULL) {
 | 
						|
        protocol->get_data_cb(protocol->context, data, length);
 | 
						|
    }
 | 
						|
}
 |