From af22fc21e27a273faac1a179fe023201679ccb7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 19 Feb 2020 21:01:01 +0100 Subject: [PATCH] global: disable debug, enabling the 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]))