diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-10-09 16:45:15 +0100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-10-09 16:45:15 +0100 |
| commit | 7989b076376900ee6fb0ab7a86875844b5c179aa (patch) | |
| tree | 5c373e6afd198e5eaf5f935542779d8067155878 /stmhal/printf.c | |
| parent | 67f25dfe6f4b13a3b8d40746d2b2fd720c63caed (diff) | |
| parent | 4091445612a14451590064f337eeb190d969d243 (diff) | |
Merge branch 'dhylands-memory-error'
Diffstat (limited to 'stmhal/printf.c')
| -rw-r--r-- | stmhal/printf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stmhal/printf.c b/stmhal/printf.c index 86b756f7d..137189b94 100644 --- a/stmhal/printf.c +++ b/stmhal/printf.c @@ -67,8 +67,9 @@ int vprintf(const char *fmt, va_list ap) { } #if MICROPY_DEBUG_PRINTERS +mp_uint_t mp_verbose_flag = 1; + int DEBUG_printf(const char *fmt, ...) { - (void)stream; va_list ap; va_start(ap, fmt); int ret = pfenv_vprintf(&pfenv_stdout, fmt, ap); |
