blob: 095e87f0e0cb2fb7827ff46da7e4e1211c753241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __DEBUG_SERIAL_H
#define __DEBUG_SERIAL_H
#include <stdio.h>
#include <avr/io.h>
#include "uart.h"
void timer_init();
void test_timer();
unsigned int ticks_to_seconds();
#endif
|