[FL-2591] Furi: remove CMSIS thread api, migrate to FuriThread, remove unused CMSIS APIs (#1333)
* Furi: remove CMSIS thread api, migrate to FuriThread, remove unused CMSIS APIs * Furi: magic thread catcher validating thread completion; backtrace improver * Furi: allow furi_thread_get_current_id outside of thread context * Furi: use IRQ instead of ISR for core primitives
This commit is contained in:
@@ -216,8 +216,9 @@ bool subghz_file_encoder_worker_start(SubGhzFileEncoderWorker* instance, const c
|
||||
xStreamBufferReset(instance->stream);
|
||||
string_set(instance->file_path, file_path);
|
||||
instance->worker_running = true;
|
||||
bool res = furi_thread_start(instance->thread);
|
||||
return res;
|
||||
furi_thread_start(instance->thread);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void subghz_file_encoder_worker_stop(SubGhzFileEncoderWorker* instance) {
|
||||
|
Reference in New Issue
Block a user