aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/hal/host/uart.h
blob: e65bfff2b34b516f6804bf24b28e8bff89f95703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef UART_H_
#define UART_H_

#include <stdio.h>


void init_uart0(void);

int input_ch_0(void);

void output_ch_0(char data);

void flush_ch_0(void);

#endif //UART_H_