Parcourir la source

rename conflicting funcs

MX il y a 2 ans
Parent
commit
a6e81a8f56

+ 2 - 2
helpers/t5577.c

@@ -107,7 +107,7 @@ void t5577_write(LFRFIDT5577Data* data) {
     t5577_stop();
 }
 
-void t5577_write_with_mask(LFRFIDT5577Data* data) {
+void t5577_write_with_maskis(LFRFIDT5577Data* data) {
     t5577_start();
     FURI_CRITICAL_ENTER();
 
@@ -131,7 +131,7 @@ void t5577_write_with_mask(LFRFIDT5577Data* data) {
     t5577_stop();
 }
 
-void t5577_write_with_pass(LFRFIDT5577Data* data, uint32_t password) {
+void t5577_write_with_passis(LFRFIDT5577Data* data, uint32_t password) {
     t5577_start();
     FURI_CRITICAL_ENTER();
     for(size_t i = 0; i < data->blocks_to_write; i++) {

+ 1 - 1
helpers/t5577.h

@@ -51,7 +51,7 @@ typedef struct {
  * @param data 
  */
 
-void t5577_write_with_mask(LFRFIDT5577Data* data);
+void t5577_write_with_maskis(LFRFIDT5577Data* data);
 
 #ifdef __cplusplus
 }

+ 1 - 1
scenes/t5577_multiwriter_scene_write_first_key.c

@@ -52,7 +52,7 @@ void t5577_multiwriter_scene_write_first_key_on_enter(void* context) {
     add_em41xx_data(&data_to_write, key, 1);
     set_em41xx_config(&data_to_write, 1);
 
-    t5577_write_with_mask(&data_to_write);
+    t5577_write_with_maskis(&data_to_write);
 
     t5577_multiwriter_write_first_key_callback(LFRFIDWorkerWriteOK, context);
 }

+ 1 - 1
scenes/t5577_multiwriter_scene_write_second_key.c

@@ -52,7 +52,7 @@ void t5577_multiwriter_scene_write_second_key_on_enter(void* context) {
     add_em41xx_data(&data_to_write, key, 3);
     set_em41xx_config(&data_to_write, 2);
 
-    t5577_write_with_mask(&data_to_write);
+    t5577_write_with_maskis(&data_to_write);
 
     t5577_multiwriter_write_second_key_callback(LFRFIDWorkerWriteOK, context);
 }

+ 1 - 1
scenes/t5577_multiwriter_scene_write_third_key.c

@@ -52,7 +52,7 @@ void t5577_multiwriter_scene_write_third_key_on_enter(void* context) {
     add_em41xx_data(&data_to_write, key, 5);
     set_em41xx_config(&data_to_write, 3);
 
-    t5577_write_with_mask(&data_to_write);
+    t5577_write_with_maskis(&data_to_write);
 
     t5577_multiwriter_write_third_key_callback(LFRFIDWorkerWriteOK, context);
 }