configurable MAIN_DEBUG and TMR_DEBUG

This commit is contained in:
Richard Aas 2016-06-09 06:49:18 +00:00
parent 4666232470
commit 852a3c6084
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@
- Look at howto optimise main loop
*/
#ifndef RELEASE
#if !defined (RELEASE) && !defined (MAIN_DEBUG)
#define MAIN_DEBUG 1 /**< Enable main loop debugging */
#endif

View file

@ -28,7 +28,7 @@
#include <re_dbg.h>
#ifndef RELEASE
#if !defined (RELEASE) && !defined (TMR_DEBUG)
#define TMR_DEBUG 1 /**< Timer debugging (0 or 1) */
#endif