3 * Author: Christian Starkjohann
4 * Creation Date: 2005-01-16
6 * Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
7 * License: Proprietary, free under certain conditions. See Documentation.
8 * This Revision: $Id: oddebug.c 52 2005-04-12 16:57:29Z cs $
16 static void uartPutc(char c
)
18 while(!(ODDBG_USR
& (1 << UDRE
))); /* wait for data register empty */
22 static uchar
hexAscii(uchar h
)
33 static void printHex(uchar c
)
35 uartPutc(hexAscii(c
>> 4));
36 uartPutc(hexAscii(c
));
39 void odDebug(uchar prefix
, uchar
*data
, uchar len
)