|
ATtiny85 Template Code
Code snippets for the ATtiny85
|
#include <avr/io.h>#include <avr/interrupt.h>#include "../hardware.h"#include "uart_defs.h"#include "softuart.h"
Go to the source code of this file.
Functions | |
| void | uartInit () |
| void | uartSend (char ch) |
| void uartInit | ( | ) |
Initialise the UART
Definition at line 30 of file uart_send.c.
| void uartSend | ( | char | ch | ) |
Write a single character
Send a single character on the UART.
| ch | the character to send. |
Definition at line 52 of file uart_send.c.
