2022-09-27 22:01:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <furi_hal.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <storage/storage.h>
|
2023-08-08 04:58:20 +00:00
|
|
|
#include <lib/subghz/types.h>
|
|
|
|
|
|
|
|
#define SUBGHZ_LAST_SETTING_FREQUENCY_ANALYZER_TRIGGER (-93.0f)
|
2023-08-25 03:48:04 +00:00
|
|
|
#define SUBGHZ_LAST_SETTING_SAVE_BIN_RAW true
|
|
|
|
#define SUBGHZ_LAST_SETTING_SAVE_PRESET true
|
2023-09-09 22:35:27 +00:00
|
|
|
// 1 = "AM650"
|
|
|
|
// "AM270", "AM650", "FM238", "FM476",
|
|
|
|
#define SUBGHZ_LAST_SETTING_DEFAULT_PRESET 1
|
|
|
|
#define SUBGHZ_LAST_SETTING_DEFAULT_FREQUENCY 433920000
|
|
|
|
#define SUBGHZ_LAST_SETTING_FREQUENCY_ANALYZER_FEEDBACK_LEVEL 2
|
2022-09-27 22:01:09 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t frequency;
|
2023-08-08 04:58:20 +00:00
|
|
|
uint32_t preset_index; // AKA Modulation
|
2022-10-11 14:45:46 +00:00
|
|
|
uint32_t frequency_analyzer_feedback_level;
|
2022-11-16 21:37:35 +00:00
|
|
|
float frequency_analyzer_trigger;
|
2023-06-18 18:09:07 +00:00
|
|
|
// TODO not using but saved so as not to change the version
|
2023-03-16 12:02:23 +00:00
|
|
|
bool external_module_enabled;
|
2023-03-16 13:03:22 +00:00
|
|
|
bool external_module_power_5v_disable;
|
2023-07-27 15:25:32 +00:00
|
|
|
bool external_module_power_amp;
|
2023-06-18 18:09:07 +00:00
|
|
|
// saved so as not to change the version
|
2023-04-21 03:46:10 +00:00
|
|
|
bool timestamp_file_names;
|
2023-08-04 14:52:16 +00:00
|
|
|
bool enable_hopping;
|
2023-08-08 04:58:20 +00:00
|
|
|
uint32_t ignore_filter;
|
|
|
|
uint32_t filter;
|
|
|
|
float rssi;
|
2023-12-24 00:08:24 +00:00
|
|
|
bool delete_old_signals;
|
2022-09-27 22:01:09 +00:00
|
|
|
} SubGhzLastSettings;
|
|
|
|
|
2022-09-28 01:49:06 +00:00
|
|
|
SubGhzLastSettings* subghz_last_settings_alloc(void);
|
|
|
|
|
|
|
|
void subghz_last_settings_free(SubGhzLastSettings* instance);
|
|
|
|
|
|
|
|
void subghz_last_settings_load(SubGhzLastSettings* instance, size_t preset_count);
|
|
|
|
|
2022-10-01 04:39:51 +00:00
|
|
|
bool subghz_last_settings_save(SubGhzLastSettings* instance);
|
2023-08-04 14:52:16 +00:00
|
|
|
|
2023-08-08 13:31:46 +00:00
|
|
|
void subghz_last_settings_log(SubGhzLastSettings* instance);
|