8 #ifndef RTOS_MACROS_HPP_
9 #define RTOS_MACROS_HPP_
11 #include "RtosCfg.hpp"
12 #include "RtosPortMacros.hpp"
13 #include "LibMacros.hpp"
16 #if RTOS_CFG_DEBUG_ENABLE
17 #define RTOS_DEBUG LIB_DEBUG
18 #define RTOS_ASSERT LIB_ASSERT
20 #define RTOS_DEBUG(level, string, ...)
21 #define RTOS_ASSERT(condition)
23 extern void __error__(
const char *fileName,
unsigned long line);