| Line 2... |
Line 2... |
| 2 |
* Project: AVR library |
2 |
* Project: AVR library |
| 3 |
* Author: Christian Starkjohann |
3 |
* Author: Christian Starkjohann |
| 4 |
* Creation Date: 2005-01-16 |
4 |
* Creation Date: 2005-01-16 |
| 5 |
* Tabsize: 4 |
5 |
* Tabsize: 4 |
| 6 |
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH |
6 |
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH |
| 7 |
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt) |
7 |
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt) |
| 8 |
* This Revision: $Id: oddebug.h,v 1.2 2007/05/19 12:30:11 harbaum Exp $ |
- |
|
| 9 |
*/ |
8 |
*/ |
| 10 |
|
9 |
|
| 11 |
#ifndef __oddebug_h_included__ |
10 |
#ifndef __oddebug_h_included__ |
| 12 |
#define __oddebug_h_included__ |
11 |
#define __oddebug_h_included__ |
| 13 |
|
12 |
|
| Line 27... |
Line 26... |
| 27 |
#ifndef F_CPU |
26 |
#ifndef F_CPU |
| 28 |
# define F_CPU 12000000 /* 12 MHz */ |
27 |
# define F_CPU 12000000 /* 12 MHz */ |
| 29 |
#endif |
28 |
#endif |
| 30 |
|
29 |
|
| 31 |
/* make sure we have the UART defines: */ |
30 |
/* make sure we have the UART defines: */ |
| 32 |
#include "iarcompat.h" |
31 |
#include "usbportability.h" |
| 33 |
#ifndef __IAR_SYSTEMS_ICC__ |
- |
|
| 34 |
# include <avr/io.h> |
- |
|
| 35 |
#endif |
- |
|
| 36 |
|
32 |
|
| 37 |
#ifndef uchar |
33 |
#ifndef uchar |
| 38 |
# define uchar unsigned char |
34 |
# define uchar unsigned char |
| 39 |
#endif |
35 |
#endif |
| 40 |
|
36 |
|