registry.c 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. #include "registry.h"
  2. const SubGhzProtocol* subghz_protocol_registry[] = {
  3. &subghz_protocol_princeton, &subghz_protocol_keeloq, &subghz_protocol_star_line,
  4. &subghz_protocol_nice_flo, &subghz_protocol_came, &subghz_protocol_faac_slh,
  5. &subghz_protocol_nice_flor_s, &subghz_protocol_came_twee, &subghz_protocol_came_atomo,
  6. &subghz_protocol_nero_sketch, &subghz_protocol_ido, &subghz_protocol_kia,
  7. &subghz_protocol_hormann, &subghz_protocol_nero_radio, &subghz_protocol_somfy_telis,
  8. &subghz_protocol_somfy_keytis, &subghz_protocol_scher_khan, &subghz_protocol_gate_tx,
  9. &subghz_protocol_raw,
  10. };
  11. const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name) {
  12. for(size_t i = 0; i < subghz_protocol_registry_count(); i++) {
  13. if(strcmp(name, subghz_protocol_registry[i]->name) == 0) {
  14. return subghz_protocol_registry[i];
  15. }
  16. }
  17. return NULL;
  18. }
  19. const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index) {
  20. if(index < subghz_protocol_registry_count()) {
  21. return subghz_protocol_registry[index];
  22. } else {
  23. return NULL;
  24. }
  25. }
  26. size_t subghz_protocol_registry_count() {
  27. return COUNT_OF(subghz_protocol_registry);
  28. }