22 lines
334 B
C
22 lines
334 B
C
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
|
|
|
|
|
|
#define u8 unsigned char
|
|
#define u16 unsigned short
|
|
#define u32 unsigned int
|
|
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
|
|
#define ERPC_DEBUG_ENABLE 1
|
|
#if(ERPC_DEBUG_ENABLE == 1)
|
|
#define ERPC_DEBUG(...) printf(__VA_ARGS__)
|
|
#else
|
|
#define ERPC_DEBUG(...)
|
|
#endif
|
|
|
|
|
|
#endif /* _CONFIG_H_ */ |