********************************************* The Universal Serial Interface supplied with some of the ATtiny devices offers many options for communication with other devices and with a PC. When communicating with a PC the USI is configured to behave like a UART (the more usually supplied receiver transmitter block). Three means of clocking the USI are provided. A timer interrupt, and external clock or a software generated clock. The interrupt system enables two processes to run at the same time. Data transfer plus an underlying process that can be interrupted. Setting up the interrupts does however take a significant amount of time which limits the maximum speed at which data transfer can take place. The software generated clock simply waits for the clock pulse. No underlying process is possible but the maximum possible data speed is significantly higher.