erpc/config.h

22 lines
334 B
C
Raw Normal View History

2024-10-29 08:42:21 +00:00
#ifndef _CONFIG_H_
#define _CONFIG_H_
2024-11-20 15:03:26 +00:00
2024-10-29 08:42:21 +00:00
#define u8 unsigned char
#define u16 unsigned short
#define u32 unsigned int
#define UNUSED(x) (void)(x)
2025-01-11 16:25:37 +00:00
#define ERPC_DEBUG_ENABLE 1
#if(ERPC_DEBUG_ENABLE == 1)
#define ERPC_DEBUG(...) printf(__VA_ARGS__)
2025-01-11 16:25:37 +00:00
#else
#define ERPC_DEBUG(...)
#endif
2024-10-29 08:42:21 +00:00
#endif /* _CONFIG_H_ */