summaryrefslogtreecommitdiff
path: root/firmware/src/dfu/dbgu.h
blob: 5ec8a493367a90a3a073b4f9de8fc29516ce5b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef dbgu_h
#define dbgu_h

#define AT91C_DBGU_BAUD 115200

#define DEBUGP(x, args ...) debugp(x, ## args)
#define DEBUGPCR(x, args ...) DEBUGP(x "\r\n", ## args)
#define DEBUGPCRF(x, args ...) DEBUGPCR("%s(%d): " x, __FUNCTION__, __LINE__, ## args)

extern void AT91F_DBGU_Init(void);
extern void AT91F_DBGU_Printk(char *buffer);
extern int AT91F_DBGU_Get(char *val);
extern void AT91F_DBGU_Ready(void);

#ifdef DEBUG
extern void debugp(const char *format, ...);
extern const char *hexdump(const void *data, unsigned int len);
extern void AT91F_DBGU_Frame(char *buffer);
#else
#define debugp(x, args ...)
#define hexdump(x, args ...)
#define AT91F_DBGU_Frame(x)
#endif

#endif /* dbgu_h */
personal git repositories of Harald Welte. Your mileage may vary