inspektors/include/main.h
2018-01-02 14:08:13 +02:00

17 lines
180 B
C

#ifndef MAIN_H
#define MAIN_H
#include <stdint.h>
#ifndef F_CPU
#define F_CPU 1000000UL
#endif
#ifdef DEBUG
#include "debug.h"
#endif /* DEBUG */
void read_temp(void);
#endif