mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
19 lines
435 B
C
19 lines
435 B
C
/*
|
|
* doorlock-avr, AVR code of Binary Kitchen's doorlock
|
|
*
|
|
* Copyright (c) Binary Kitchen, 2018
|
|
*
|
|
* Authors:
|
|
* Ralf Ramsauer <ralf@binary-kitchen.de>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
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);
|