inspektors/include/main.h

19 lines
237 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 init_led(void);
void read_temp(void);
uint16_t read_adc(uint8_t channel);
#endif