2022-03-03 09:48:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../types.h"
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Registration by name SubGhzProtocol.
|
|
|
|
* @param name Protocol name
|
|
|
|
* @return SubGhzProtocol* pointer to a SubGhzProtocol instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Registration protocol by index in array SubGhzProtocol.
|
|
|
|
* @param index Protocol by index in array
|
|
|
|
* @return SubGhzProtocol* pointer to a SubGhzProtocol instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Getting the number of registered protocols.
|
|
|
|
* @return Number of protocols
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
size_t subghz_protocol_registry_count();
|