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
|
|
|
|
|
2024-11-21 13:22:33 +00:00
|
|
|
#define UNUSED(x) (void)(x)
|
2025-01-11 16:25:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define ERPC_DEBUG_ENABLE 1
|
|
|
|
#if(ERPC_DEBUG_ENABLE == 1)
|
2024-11-21 13:22:33 +00:00
|
|
|
#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_ */
|