Attiny13 Software Uart Library Save

ATtiny13 Software UART library.

Project README

attiny13-software-uart-library

ATtiny13 Software UART library. More info here - http://blog.podkalicki.com/attiny13-software-uart-debug-logger/

Example code

/**
 * Copyright (c) 2017, Łukasz Marcin Podkalicki <[email protected]>
 * Serial Parrot - example of Software UART.
 */

#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "uart.h"

int
main(void)
{
	char c;

	uart_puts("Hello Parrot!\n");

	while (1) {
		c = uart_getc();
		uart_putc(c);
	}
}
Open Source Agenda is not affiliated with "Attiny13 Software Uart Library" Project. README Source: lpodkalicki/attiny13-software-uart-library

Open Source Agenda Badge

Open Source Agenda Rating