You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
191 B
13 lines
191 B
3 years ago
|
#ifndef __UTILS_H__
|
||
|
#define __UTILS_H__
|
||
|
|
||
|
// Enable debug logging
|
||
|
//#define DEBUG 1
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#define LOGD(fmt, ...) printf(fmt, ##__VA_ARGS__)
|
||
|
#else
|
||
|
#define LOGD(fmtn, ...)
|
||
|
#endif
|
||
|
|
||
|
#endif
|