File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## v.1.3
2
+
3
+ Minimal changes for recent API updates
4
+
1
5
## v.1.2
2
6
3
7
* Fix deadlock on disk eject
10
14
11
15
## v.1.0
12
16
13
- Initial release.
17
+ Initial release.
Original file line number Diff line number Diff line change 9
9
],
10
10
stack_size=2 * 1024,
11
11
fap_description="Implements a mass storage device over USB for disk images",
12
- fap_version="1.2 ",
12
+ fap_version="1.3 ",
13
13
fap_icon="assets/mass_storage_10px.png",
14
14
fap_icon_assets="assets",
15
15
fap_category="USB",
Original file line number Diff line number Diff line change @@ -22,15 +22,13 @@ static void mass_storage_app_tick_event_callback(void* context) {
22
22
}
23
23
24
24
void mass_storage_app_show_loading_popup (MassStorageApp * app , bool show ) {
25
- TaskHandle_t timer_task = xTaskGetHandle (configTIMER_SERVICE_TASK_NAME );
26
-
27
25
if (show ) {
28
26
// Raise timer priority so that animations can play
29
- vTaskPrioritySet ( timer_task , configMAX_PRIORITIES - 1 );
27
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityElevated );
30
28
view_dispatcher_switch_to_view (app -> view_dispatcher , MassStorageAppViewLoading );
31
29
} else {
32
30
// Restore default timer priority
33
- vTaskPrioritySet ( timer_task , configTIMER_TASK_PRIORITY );
31
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityNormal );
34
32
}
35
33
}
36
34
You can’t perform that action at this time.
0 commit comments