Skip to content

ecnx/avr-uart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

avr-uart

UART Library for AVR Atmega328p

Example:

uint8_t data[4];
uart_init_with_rxd_pullup();
uart_tx_byte('b');
uart_rx_data(data, sizeof(data));
if (uart_data_available()) {
    uart_tx_byte('x');
}
uart_uninit();

Releases

No releases published

Packages

No packages published

Languages