File tree 10 files changed +21
-17
lines changed
10 files changed +21
-17
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
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
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
Original file line number Diff line number Diff line change 1
1
## 1.2
2
2
- Add protocol Acurite-986
3
- - Functions for working with delays have been changed
3
+ - Minimal changes for recent API updates
4
4
## 1.1
5
5
- Add protocol Auriol_AHFL
6
6
## 1.0
You can’t perform that action at this time.
0 commit comments