UART/UART.h

19 lines
267 B
C
Raw Permalink Normal View History

2022-11-18 18:42:34 +01:00
/*
* UART.h
*
* Created on: Nov 18, 2022
* Author: Tom
*/
#ifndef UART_UART_H_
#define UART_UART_H_
#include "stdio.h"
2022-11-18 20:05:41 +01:00
#include "string.h"
2022-11-18 18:42:34 +01:00
void UART_char(unsigned char c);
void UART_int(unsigned int);
void UART_string(char*);
#endif /* UART_UART_H_ */