]>
git.zerfleddert.de Git - fnordlicht-mini/blob - firmware/fnordlicht-controller/usbdrv/oddebug.h
d61309daacf0d7138fecb4006c9f903c40400e90
3 * Author: Christian Starkjohann
4 * Creation Date: 2005-01-16
6 * Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
7 * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
8 * This Revision: $Id: oddebug.h 692 2008-11-07 15:07:40Z cs $
11 #ifndef __oddebug_h_included__
12 #define __oddebug_h_included__
16 This module implements a function for debug logs on the serial line of the
17 AVR microcontroller. Debugging can be configured with the define
18 'DEBUG_LEVEL'. If this macro is not defined or defined to 0, all debugging
19 calls are no-ops. If it is 1, DBG1 logs will appear, but not DBG2. If it is
20 2, DBG1 and DBG2 logs will be printed.
22 A debug log consists of a label ('prefix') to indicate which debug log created
23 the output and a memory block to dump in hex ('data' and 'len').
28 # define F_CPU 12000000 /* 12 MHz */
31 /* make sure we have the UART defines: */
32 #include "usbportability.h"
35 # define uchar unsigned char
38 #if DEBUG_LEVEL > 0 && !(defined TXEN || defined TXEN0) /* no UART in device */
39 # warning "Debugging disabled because device has no UART"
44 # define DEBUG_LEVEL 0
47 /* ------------------------------------------------------------------------- */
50 # define DBG1(prefix, data, len) odDebug(prefix, data, len)
52 # define DBG1(prefix, data, len)
56 # define DBG2(prefix, data, len) odDebug(prefix, data, len)
58 # define DBG2(prefix, data, len)
61 /* ------------------------------------------------------------------------- */
64 extern void odDebug(uchar prefix
, uchar
*data
, uchar len
);
66 /* Try to find our control registers; ATMEL likes to rename these */
69 # define ODDBG_UBRR UBRR
71 # define ODDBG_UBRR UBRRL
73 # define ODDBG_UBRR UBRR0
75 # define ODDBG_UBRR UBRR0L
79 # define ODDBG_UCR UCR
81 # define ODDBG_UCR UCSRB
83 # define ODDBG_UCR UCSR0B
87 # define ODDBG_TXEN TXEN
89 # define ODDBG_TXEN TXEN0
93 # define ODDBG_USR USR
95 # define ODDBG_USR UCSRA
97 # define ODDBG_USR UCSR0A
101 # define ODDBG_UDRE UDRE
103 # define ODDBG_UDRE UDRE0
107 # define ODDBG_UDR UDR
109 # define ODDBG_UDR UDR0
112 static inline void odDebugInit(void)
114 ODDBG_UCR
|= (1<<ODDBG_TXEN
);
115 ODDBG_UBRR
= F_CPU
/ (19200 * 16L) - 1;
118 # define odDebugInit()
121 /* ------------------------------------------------------------------------- */
123 #endif /* __oddebug_h_included__ */