SubGhz: update notification messages (#1602)

* SubGhz: update notification messages

* Assets: update default notification dolphin. SubGhz: update prohibited frequency text.

* FuriHal: finalize version and region link
This commit is contained in:
あく
2022-08-16 00:53:08 +09:00
committed by GitHub
parent e1ffb4ac4d
commit b3d7583f9b
18 changed files with 37 additions and 25 deletions

View File

@@ -304,6 +304,12 @@ void subghz_free(SubGhz* subghz) {
int32_t subghz_app(void* p) {
SubGhz* subghz = subghz_alloc();
if(!furi_hal_region_is_provisioned()) {
subghz_dialog_message_show_only_rx(subghz);
subghz_free(subghz);
return 1;
}
//Load database
bool load_database = subghz_environment_load_keystore(
subghz->txrx->environment, EXT_PATH("subghz/assets/keeloq_mfcodes"));