AVR-Playground/uart.h

7 lines
129 B
C
Raw Normal View History

2024-03-23 21:18:52 +01:00
#pragma once
#include <stdint.h>
void initUART();
void UART_transmit(uint8_t data);
2024-03-24 01:55:23 +01:00
void UART_println(const char* format, ...);