#include #include #include #include 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); }