7 lines
121 B
C
7 lines
121 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void initUART();
|
||
|
void UART_transmit(uint8_t data);
|
||
|
void UART_println(const char *str);
|