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/subghz.c')
-rw-r--r--applications/subghz/subghz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/subghz/subghz.c b/applications/subghz/subghz.c
index 4f442562..705be7d4 100644
--- a/applications/subghz/subghz.c
+++ b/applications/subghz/subghz.c
@@ -74,7 +74,7 @@ void subghz_tick_event_callback(void* context) {
}
SubGhz* subghz_alloc() {
- SubGhz* subghz = furi_alloc(sizeof(SubGhz));
+ SubGhz* subghz = malloc(sizeof(SubGhz));
// GUI
subghz->gui = furi_record_open("gui");
@@ -177,7 +177,7 @@ SubGhz* subghz_alloc() {
subghz_test_static_get_view(subghz->subghz_test_static));
//init Worker & Protocol & History
- subghz->txrx = furi_alloc(sizeof(SubGhzTxRx));
+ subghz->txrx = malloc(sizeof(SubGhzTxRx));
subghz->txrx->frequency = subghz_frequencies[subghz_frequencies_433_92];
subghz->txrx->preset = FuriHalSubGhzPresetOok650Async;
subghz->txrx->txrx_state = SubGhzTxRxStateSleep;