Mario Hüttel
69c00ff3d3
* Add digio module for controlling LEDs, Loudspeaker, and the Digital IOs * General code improvements
15 lines
302 B
C
15 lines
302 B
C
#ifndef __HELPER_MACROS_H__
|
|
#define __HELPER_MACROS_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
#define xstr(x) str(x)
|
|
#define str(x) #x
|
|
|
|
#define CONCATX(x,y) CONCAT(x,y)
|
|
#define CONCAT(x,y) x##y
|
|
|
|
#define COUNT_OF(x) ((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x])))))
|
|
|
|
#endif /* __HELPER_MACROS_H__ */
|