File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.8
2
+ - Minimal changes for recent API updates
1
3
## 1.7
2
4
- Rework application with new NFC API
3
5
## 1.6
Original file line number Diff line number Diff line change 10
10
],
11
11
stack_size=4 * 1024,
12
12
fap_description="App to communicate with NFC tags using the PicoPass(iClass) format",
13
- fap_version="1.7 ",
13
+ fap_version="1.8 ",
14
14
fap_icon="125_10px.png",
15
15
fap_category="NFC",
16
16
fap_libs=["mbedtls"],
Original file line number Diff line number Diff line change @@ -196,15 +196,13 @@ void picopass_blink_stop(Picopass* picopass) {
196
196
197
197
void picopass_show_loading_popup (void * context , bool show ) {
198
198
Picopass * picopass = context ;
199
- TaskHandle_t timer_task = xTaskGetHandle (configTIMER_SERVICE_TASK_NAME );
200
-
201
199
if (show ) {
202
200
// Raise timer priority so that animations can play
203
- vTaskPrioritySet ( timer_task , configMAX_PRIORITIES - 1 );
201
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityElevated );
204
202
view_dispatcher_switch_to_view (picopass -> view_dispatcher , PicopassViewLoading );
205
203
} else {
206
204
// Restore default timer priority
207
- vTaskPrioritySet ( timer_task , configTIMER_TASK_PRIORITY );
205
+ furi_timer_set_thread_priority ( FuriTimerThreadPriorityNormal );
208
206
}
209
207
}
210
208
You can’t perform that action at this time.
0 commit comments