15 lines
202 B
C
15 lines
202 B
C
/*
|
|
* uart_comms.h
|
|
*
|
|
* Created on: Dec 13, 2025
|
|
* Author: Thad
|
|
*/
|
|
|
|
#ifndef MAIN_UART_COMMS_H_
|
|
#define MAIN_UART_COMMS_H_
|
|
|
|
void uart_start();
|
|
void uart_stop();
|
|
|
|
#endif /* MAIN_UART_COMMS_H_ */
|