mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-03 01:39:17 +00:00
9 lines
302 B
C
9 lines
302 B
C
|
#include "protocol_items.h"
|
||
|
|
||
|
const SubGhzProtocol* pocsag_pager_protocol_registry_items[] = {
|
||
|
&subghz_protocol_pocsag,
|
||
|
};
|
||
|
|
||
|
const SubGhzProtocolRegistry pocsag_pager_protocol_registry = {
|
||
|
.items = pocsag_pager_protocol_registry_items,
|
||
|
.size = COUNT_OF(pocsag_pager_protocol_registry_items)};
|