X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fuart.c;h=0c9943c914340aa8b715c4daf274443b88a67703;hb=e08695bd5905f1306c16d617d044d97649b5e2ae;hp=cf952ed024eb526c714f64df60b08b8aa672c1ba;hpb=5ac75cfae217122b540c1a6d258054230dc534c3;p=avr-crypto-lib.git diff --git a/test_src/uart.c b/test_src/uart.c index cf952ed..0c9943c 100644 --- a/test_src/uart.c +++ b/test_src/uart.c @@ -1,6 +1,6 @@ /* uart.c */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ #include #include #include - +#include "hexdigit_tab.h" #include "uart.h" #ifdef ATMEGA128 @@ -58,6 +58,27 @@ #define RXC RXC0 #endif +#ifdef AT90USB162 +#define UCSRB UCSR1B +#define UCSRC UCSR1C +#define UDR UDR1 +#define UBRRH UBRR1H +#define UBRRL UBRR1L +#define URSEL UMSEL10 +#define USART_UDRE_vect USART1_UDRE_vect +#define USART_RXC_vect USART1_RX_vect +#define UDRIE UDRIE1 +#define TXEN TXEN1 +#define UMSEL UMSEL1 +#define RXEN RXEN1 +#define RXCIE RXCIE1 +#define UCSZ0 UCSZ10 +#define UCSRA UCSR1A +#define UDRE UDRE1 +#define RXC RXC1 +#endif + + #ifdef UART_XON_XOFF #ifdef UART_INTERRUPT @@ -258,11 +279,9 @@ void uart_putstr_P(PGM_P str) { void uart_hexdump(const void* buf, int len) { - unsigned char table[]={'0','1','2','3','4','5','6','7', - '8','9','a','b','c','d','e','f'}; while(len--){ - uart_putc(table[((*((char*)buf))>>4)&0xf]); - uart_putc(table[(*((char*)buf))&0xf]); + uart_putc(pgm_read_byte(hexdigit_tab_P + ((*((uint8_t*)buf))>>4))); + uart_putc(pgm_read_byte(hexdigit_tab_P + ((*((uint8_t*)buf))&0xf))); uart_putc(' '); buf=(uint8_t*)buf+1; }