From 165f545310f3dbd59fac884c038c59b7c7324fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 24 Mar 2021 17:06:12 +0100 Subject: [PATCH] global: disable DEBUG --- global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.h b/global.h index fea9fc3..da15df4 100644 --- a/global.h +++ b/global.h @@ -7,7 +7,7 @@ #pragma once /** enable debugging functionalities */ -#define DEBUG true +#define DEBUG false /** Data Synchronization Barrier, ensure all data is written */ #define __DSB() __asm__("dsb")