From 6e1ced7e8b4132ad35fa9e5922a7cbf3e0c3bb2d Mon Sep 17 00:00:00 2001 From: Xavier Date: Tue, 28 Nov 2023 11:56:02 -0500 Subject: [PATCH] verbose output off to get to decoded data faster --- gpio/wiegand/scenes/wiegand_data.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpio/wiegand/scenes/wiegand_data.c b/gpio/wiegand/scenes/wiegand_data.c index b3410cff208..8f0c4d3138d 100644 --- a/gpio/wiegand/scenes/wiegand_data.c +++ b/gpio/wiegand/scenes/wiegand_data.c @@ -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;) {