File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.2
2
+ - Minimal changes for recent API updates
3
+
1
4
## 1.1
2
5
- Rework application with new NFC API
6
+
3
7
## 1.0
4
8
- Initial release
Original file line number Diff line number Diff line change 10
10
],
11
11
stack_size=4 * 1024,
12
12
fap_description="Application for writing to NFC tags with modifiable sector 0",
13
- fap_version="1.1 ",
13
+ fap_version="1.2 ",
14
14
fap_icon="assets/125_10px.png",
15
15
fap_category="NFC",
16
16
fap_private_libs=[
Original file line number Diff line number Diff line change @@ -23,15 +23,13 @@ void nfc_magic_app_tick_event_callback(void* context) {
23
23
24
24
void nfc_magic_app_show_loading_popup (void * context , bool show ) {
25
25
NfcMagicApp * instance = context ;
26
- TaskHandle_t timer_task = xTaskGetHandle (configTIMER_SERVICE_TASK_NAME );
27
-
28
26
if (show ) {
29
27
// Raise timer priority so that animations can play
30
- vTaskPrioritySet ( timer_task , configMAX_PRIORITIES - 1 );
28
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityElevated );
31
29
view_dispatcher_switch_to_view (instance -> view_dispatcher , NfcMagicAppViewLoading );
32
30
} else {
33
31
// Restore default timer priority
34
- vTaskPrioritySet ( timer_task , configTIMER_TASK_PRIORITY );
32
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityNormal );
35
33
}
36
34
}
37
35
You can’t perform that action at this time.
0 commit comments