* 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>
		
			
				
	
	
		
			39 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file protocol_metakom.h
 | 
						|
 * 
 | 
						|
 * Metakom pulse format decoder
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
#include <stdint.h>
 | 
						|
#include "../../pulse_protocols/pulse_protocol.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct ProtocolMetakom ProtocolMetakom;
 | 
						|
 | 
						|
/**
 | 
						|
 * Allocate decoder
 | 
						|
 * @return ProtocolMetakom* 
 | 
						|
 */
 | 
						|
ProtocolMetakom* protocol_metakom_alloc();
 | 
						|
 | 
						|
/**
 | 
						|
 * Free decoder
 | 
						|
 * @param metakom 
 | 
						|
 */
 | 
						|
void protocol_metakom_free(ProtocolMetakom* metakom);
 | 
						|
 | 
						|
/**
 | 
						|
 * Get protocol interface
 | 
						|
 * @param metakom 
 | 
						|
 * @return PulseProtocol* 
 | 
						|
 */
 | 
						|
PulseProtocol* protocol_metakom_get_protocol(ProtocolMetakom* metakom);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |