X-Git-Url: http://git.droids-corp.org/?p=protos%2Fimu.git;a=blobdiff_plain;f=uart.h;fp=uart.h;h=0000000000000000000000000000000000000000;hp=d94d93d5306fa867488d82e05a41e0b4cdcd3043;hb=e19240438eba7e87f6f3ad0c6c8f387d92ab4000;hpb=9c35c09227041d2d23477b19443b3f707fddc664 diff --git a/uart.h b/uart.h deleted file mode 100644 index d94d93d..0000000 --- a/uart.h +++ /dev/null @@ -1,42 +0,0 @@ - -/* - * Copyright (c) 2006-2012 by Roland Riegel - * - * This file is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - */ - -#ifndef UART_H -#define UART_H - -#include -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -void uart_init(); - -void uart_putc(uint8_t c); - -void uart_putc_hex(uint8_t b); -void uart_putw_hex(uint16_t w); -void uart_putdw_hex(uint32_t dw); - -void uart_putw_dec(uint16_t w); -void uart_putdw_dec(uint32_t dw); - -void uart_puts(const char* str); -void uart_puts_p(PGM_P str); - -uint8_t uart_getc(); - -#ifdef __cplusplus -} -#endif - -#endif -