From 54bdd9222250f54f4e5dde08ce48aa9c2a7367d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 20 Feb 2020 11:45:53 +0100 Subject: [PATCH] global: switch debug off, enabling watchdog --- global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.h b/global.h index c110f03..fb72375 100644 --- a/global.h +++ b/global.h @@ -20,7 +20,7 @@ #pragma once /** enable debugging functionalities */ -#define DEBUG true +#define DEBUG false /** get the length of an array */ #define LENGTH(x) (sizeof(x) / sizeof((x)[0]))