From ace9fb54053c29574bdf81ffacc5ddcf9d4b45d9 Mon Sep 17 00:00:00 2001 From: Stefan Naumann Date: Mon, 24 Jul 2017 18:55:14 +0200 Subject: py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE. It enables all the DEBUG_printf outputs in the py/ source code. --- py/modthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/modthread.c') diff --git a/py/modthread.c b/py/modthread.c index 1d7602789..bf74128e8 100644 --- a/py/modthread.c +++ b/py/modthread.c @@ -34,7 +34,7 @@ #include "py/mpthread.h" -#if 0 // print debugging info +#if MICROPY_DEBUG_VERBOSE // print debugging info #define DEBUG_PRINT (1) #define DEBUG_printf DEBUG_printf #else // don't print debugging info -- cgit v1.2.3