import sources

This commit is contained in:
Олег Бородин
2024-07-28 15:21:25 +02:00
commit 47485f71a4
21 changed files with 1667 additions and 0 deletions

19
uartio.h Normal file
View File

@@ -0,0 +1,19 @@
/*
* Copyright 2017 Oleg Borodin <onborodin@gmail.com>
*
*/
#ifndef UART_H_ITU
#define UART_H_ITU
#include <fifo.h>
extern fifo_t uart_inbuf, uart_outbuf;
extern FILE uart_stream;
void uartio_init(void);
int uart_putchar(char c, FILE * stream);
int uart_getchar(FILE * stream);
#endif