Skip to content

Commit

Permalink
verbose output off to get to decoded data faster
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsunehunter committed Nov 28, 2023
1 parent 447e7ec commit 6e1ced7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpio/wiegand/scenes/wiegand_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ void wiegand_data_scene_on_enter(void *context)
furi_string_push_back(buffer, '\n');
}
}
furi_string_cat_printf(buffer, "\nPulse: %ld us", (data_rise[0] - data_fall[0]) / 64);
furi_string_cat_printf(buffer, "\nPeriod: %ld us", (data_fall[1] - data_fall[0]) / 64);
// furi_string_cat_printf(buffer, "\nPulse: %ld us", (data_rise[0] - data_fall[0]) / 64);
// furi_string_cat_printf(buffer, "\nPeriod: %ld us", (data_fall[1] - data_fall[0]) / 64);
wiegand_add_info(buffer);
for (int i = 0; i < bit_count;)
{
Expand Down

0 comments on commit 6e1ced7

Please sign in to comment.