The following code comes from AtTiny serial library that I want to use:
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
// change these to use another pin
#define TX_PORT PORTB
#define TX_PIN PB0
#define TX_DDR DDRB
#define TX_DDR_PIN DDB0
I have no idea which pins to connect. What do these constants mean and where are they documented?