Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applications/subghz/views')
-rw-r--r--applications/subghz/views/subghz_capture.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/applications/subghz/views/subghz_capture.c b/applications/subghz/views/subghz_capture.c
index bd1234df..4df825b9 100644
--- a/applications/subghz/views/subghz_capture.c
+++ b/applications/subghz/views/subghz_capture.c
@@ -207,9 +207,10 @@ SubghzCapture* subghz_capture_alloc() {
subghz_capture->worker, (SubGhzWorkerPairCallback)subghz_protocol_parse);
subghz_worker_set_context(subghz_capture->worker, subghz_capture->protocol);
- subghz_protocol_load_keeloq_file(subghz_capture->protocol, "/assets/subghz/keeloq_mfcodes");
+ subghz_protocol_load_keeloq_file(
+ subghz_capture->protocol, "/ext/assets/subghz/keeloq_mfcodes");
subghz_protocol_load_nice_flor_s_file(
- subghz_capture->protocol, "/assets/subghz/nice_floor_s_rx");
+ subghz_capture->protocol, "/ext/assets/subghz/nice_floor_s_rx");
subghz_protocol_enable_dump_text(
subghz_capture->protocol, subghz_capture_text_callback, subghz_capture);