This commit is contained in:
MX 2023-09-05 05:59:21 +03:00
parent 1653abe0ef
commit 1859b06b6a
No known key found for this signature in database
GPG key ID: 7CCC66B7DBDD1C83

View file

@ -49,14 +49,15 @@ SubGhzKeystore* subghz_environment_get_keystore(SubGhzEnvironment* instance) {
void subghz_environment_set_came_atomo_rainbow_table_file_name(
SubGhzEnvironment* instance,
const char* filename) {
furi_assert(instance);
UNUSED(instance);
UNUSED(filename);
// Do nothing :)
return;
}
const char*
subghz_environment_get_came_atomo_rainbow_table_file_name(SubGhzEnvironment* instance) {
furi_assert(instance);
UNUSED(instance);
// No table, sorry
return "";
}