- renamed folder

git-svn-id: http://moon:8086/svn/projects/HendiControl@161 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
2019-03-30 00:53:10 +00:00
parent 9035753d6c
commit d2a116ce13
17 changed files with 0 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* uart.h
*
* Created: 20.02.2019 20:50:01
* Author: jens
*/
#ifndef UART_H_
#define UART_H_
#include "machine.h"
#include "fifo.h"
#define UART_PRESCALE(baudrate, smpPerBit) ((5+ 10*F_CPU / (baudrate*smpPerBit) - 1)/10)
void uart_init(Fifo *pFifo, uint32_t baudrate);
void uart_putc(char c);
int uart_putchar(char c, FILE *stream);
void uart_puts(char const *str);
#endif /* UART_H_ */