From 1d53f8f10a6ab6b4994cc3b2ac1ddecd15159983 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Mon, 12 May 2025 22:27:14 +0200 Subject: [PATCH] cleanups --- c_mpos/src/quirc_decode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/c_mpos/src/quirc_decode.c b/c_mpos/src/quirc_decode.c index 591a157d..0fb6c8ee 100644 --- a/c_mpos/src/quirc_decode.c +++ b/c_mpos/src/quirc_decode.c @@ -1,5 +1,4 @@ #include -#include // For ESP-IDF logging #include "py/obj.h" #include "py/runtime.h" #include "py/mperrno.h" @@ -135,7 +134,7 @@ static mp_obj_t qrdecode(mp_uint_t n_args, const mp_obj_t *args) { fflush(stdout); */ - printf("qrdecode: Returning result\n"); + QRDECODE_DEBUG_PRINT("qrdecode: Returning result\n"); //return result; return mp_const_none; // MicroPython functions typically return None }