Files
Last update 5 years 9 months
by
Petre Rodan
Filesavrdrivers | |
---|---|
.. | |
adc.c | |
adc.h | |
diskio.c | |
diskio.h | |
ir_remote.c | |
ir_remote.h | |
spi.c | |
spi.h | |
timer.c | |
timer.h | |
uart.c | |
uart.h | |
vs1063.c | |
vs1063.h |
timer.h#ifndef __TIMER_H__ #define __TIMER_H__ #include <stdint.h> #include <avr/io.h> void timer_init(void); uint32_t millis(void); void delay(const uint32_t ms); #endif