From cbc941282074856fc6179761b70a0c9879b0b64d Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Tue, 11 Oct 2011 21:56:36 +0200 Subject: update firmware to @319 --- firmware/debug.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'firmware/debug.h') diff --git a/firmware/debug.h b/firmware/debug.h index 8aa15d9..202ef22 100644 --- a/firmware/debug.h +++ b/firmware/debug.h @@ -1,5 +1,12 @@ +#ifdef DEBUG +#define debugf printf("%s,%d: ", __FILE__, __LINE__); printf +#else +#define debugf debug_dummy +#endif + +void debug_dummy(char *fmt, ...); void debug_init(void); +int debug_putchar(char c, FILE *stream); void debug_deinit(void); -void debug_write(char *buf); unsigned char debug_AsciiToHex(unsigned char high, unsigned char low); void debug_SendHex(unsigned char hex); -- cgit v1.2.1