Skip to content

Commit

Permalink
rename conflicting funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Jan 13, 2024
1 parent 51f62b2 commit 5005521
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions non_catalog_apps/t5577_multiwriter/helpers/t5577.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -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++) {
Expand Down
2 changes: 1 addition & 1 deletion non_catalog_apps/t5577_multiwriter/helpers/t5577.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ typedef struct {
* @param data
*/

void t5577_write_with_mask(LFRFIDT5577Data* data);
void t5577_write_with_maskis(LFRFIDT5577Data* data);

#ifdef __cplusplus
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5005521

Please sign in to comment.