You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
184 B

// delay.h
#ifndef DELAY_H_
#define DELAY_H_
#include <avr/io.h>
#include <avr/cpufunc.h>
void delay8(uint8_t);
void delay16(uint16_t);
void init_PUTR();
void PUTR(uint8_t);
#endif