inspektors/include/main.h

17 lines
180 B
C
Raw Normal View History

2017-11-24 13:29:36 +02:00
#ifndef MAIN_H
#define MAIN_H
#include <stdint.h>
2018-01-02 13:45:56 +02:00
#ifndef F_CPU
#define F_CPU 1000000UL
#endif
#ifdef DEBUG
#include "debug.h"
#endif /* DEBUG */
void read_temp(void);
2017-11-24 13:29:36 +02:00
#endif