AVR-Playground/uart.h
2024-03-23 21:18:52 +01:00

7 lines
No EOL
121 B
C

#pragma once
#include <stdint.h>
void initUART();
void UART_transmit(uint8_t data);
void UART_println(const char *str);