1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-06-01 22:52:35 +02:00
doorlockd-mirror/avr-code/uart.h
2015-09-25 00:50:08 +02:00

14 lines
209 B
C

#ifndef UART_H
#define UART_H
#define BAUD 9600UL
void uart_set_recv_handler(void (*handler)(unsigned char c));
void uart_init(void);
void uart_putc(const char c);
void uart_puts(const char* str);
#endif