environment.h 851 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include <furi.h>
  3. #include "subghz_keystore.h"
  4. typedef struct SubGhzEnvironment SubGhzEnvironment;
  5. SubGhzEnvironment* subghz_environment_alloc();
  6. void subghz_environment_free(SubGhzEnvironment* instance);
  7. bool subghz_environment_load_keystore(SubGhzEnvironment* instance, const char* filename);
  8. SubGhzKeystore* subghz_environment_get_keystore(SubGhzEnvironment* instance);
  9. void subghz_environment_set_came_atomo_rainbow_table_file_name(
  10. SubGhzEnvironment* instance,
  11. const char* filename);
  12. const char* subghz_environment_get_came_atomo_rainbow_table_file_name(SubGhzEnvironment* instance);
  13. void subghz_environment_set_nice_flor_s_rainbow_table_file_name(
  14. SubGhzEnvironment* instance,
  15. const char* filename);
  16. const char*
  17. subghz_environment_get_nice_flor_s_rainbow_table_file_name(SubGhzEnvironment* instance);