ソースを参照

Merge mifare_nested from https://github.com/xMasterX/all-the-plugins

Willy-JL 1 年間 前
コミット
9ad05917e5
1 ファイル変更1 行追加2 行削除
  1. 1 2
      mifare_nested/lib/nfclegacy/ST25RFAL002/platform.c

+ 1 - 2
mifare_nested/lib/nfclegacy/ST25RFAL002/platform.c

@@ -48,8 +48,7 @@ void platformSetIrqCallback(PlatformIrqCallback callback) {
 
     if(!rfal_platform.thread) {
         rfal_platform.thread =
-            furi_thread_alloc_ex("RfalIrqDriver", 1024, rfal_platform_irq_thread, NULL);
-        furi_thread_mark_as_service(rfal_platform.thread);
+            furi_thread_alloc_service("RfalIrqDriver", 1024, rfal_platform_irq_thread, NULL);
         furi_thread_set_priority(rfal_platform.thread, FuriThreadPriorityIsr);
         furi_thread_start(rfal_platform.thread);
     }