Serial Musical Organ 1.0
Buzzer controller and musical organ
Loading...
Searching...
No Matches
USART.h
Go to the documentation of this file.
1
17#ifndef USART_H
18#define USART_H
19
36void initUSART(void);
37
51void printString(const char String[]);
52
64uint8_t receiveByte(void);
65
78void transmitByte(uint8_t data);
79
80#endif /* USART_H */
void initUSART(void)
Initializes the USART peripheral for serial communication.
Definition USART.c:34
uint8_t receiveByte(void)
Receives a single byte from USART.
Definition USART.c:88
void printString(const char String[])
Sends a null-terminated string over USART.
void transmitByte(uint8_t data)
Transmits a single byte over USART.
Definition USART.c:71