mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 13:33:06 +00:00
24 lines
707 B
C
24 lines
707 B
C
|
#include <furi.h>
|
||
|
#include <furi_hal.h>
|
||
|
|
||
|
#include <firmware/targets/f7/furi_hal/furi_hal_subghz_i.h>
|
||
|
|
||
|
#include <flipper_format/flipper_format_i.h>
|
||
|
|
||
|
void subghz_dangerous_freq() {
|
||
|
bool is_extended_i = false;
|
||
|
|
||
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
||
|
FlipperFormat* fff_data_file = flipper_format_file_alloc(storage);
|
||
|
|
||
|
if(flipper_format_file_open_existing(fff_data_file, "/ext/subghz/assets/dangerous_settings")) {
|
||
|
flipper_format_read_bool(
|
||
|
fff_data_file, "yes_i_want_to_destroy_my_flipper", &is_extended_i, 1);
|
||
|
}
|
||
|
|
||
|
furi_hal_subghz_set_dangerous_frequency(is_extended_i);
|
||
|
|
||
|
flipper_format_free(fff_data_file);
|
||
|
furi_record_close(RECORD_STORAGE);
|
||
|
}
|