|
MEGA-1284P Xplained Example Application
|
00001 00039 #include "avr_compiler.h" 00040 00041 /* Renaming usart1_putchar for IAR. IAR needs to use putchar in 00042 * order to point printf to correct usart 00043 */ 00044 #if defined( __ICCAVR__ ) 00045 #define usart1_putchar putchar 00046 #endif 00047 00048 // Public function declarations 00049 uint8_t usart1_getchar(void); 00050 int usart1_putchar(int c); 00051
1.7.3