From 3900c7ba775c8d5d56273eeb8eac7775eae4e815 Mon Sep 17 00:00:00 2001 From: dario Date: Fri, 27 Oct 2023 14:31:38 +0200 Subject: [PATCH] Removed preliminary debug implementation --- include/sta/rtos/debug.hpp | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 include/sta/rtos/debug.hpp diff --git a/include/sta/rtos/debug.hpp b/include/sta/rtos/debug.hpp deleted file mode 100644 index aa58cba..0000000 --- a/include/sta/rtos/debug.hpp +++ /dev/null @@ -1,28 +0,0 @@ -/* - * debug.hpp - * - * Created on: Oct 15, 2023 - * Author: Dario - */ - -#ifndef RTOS2_UTILS_INCLUDE_STA_RTOS_DEBUG_HPP_ -#define RTOS2_UTILS_INCLUDE_STA_RTOS_DEBUG_HPP_ - -#include -#ifdef STA_DEBUGGING_ENABLED - -# define STA_DEBUG_THREADS() \ -{ \ - - -} - - -#else // !STA_DEBUGGING_ENABLED - -# define STA_DEBUG_THREADS() ((void)0) - - -#endif // STA_DEBUGGING_ENABLED - -#endif /* RTOS2_UTILS_INCLUDE_STA_RTOS_DEBUG_HPP_ */