mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Furi, USB, BLE, Debug: various bug fixes and improvements (#4114)
* Furi, USB, BLE: extra stack space for some threads, small code cleanup. * Furi: thread watermark check on exit, explicitly crash if built with LIB_DEBUG=1 * Debug: color logging in apps/furi gdb helper, check and show crash message in gdb console.
This commit is contained in:
@@ -90,7 +90,7 @@ void ble_event_thread_stop(void) {
|
||||
void ble_event_thread_start(void) {
|
||||
furi_check(event_thread == NULL);
|
||||
|
||||
event_thread = furi_thread_alloc_ex("BleEventWorker", 1024, ble_event_thread, NULL);
|
||||
event_thread = furi_thread_alloc_ex("BleEventWorker", 1280, ble_event_thread, NULL);
|
||||
furi_thread_set_priority(event_thread, FuriThreadPriorityHigh);
|
||||
furi_thread_start(event_thread);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user