You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
400 B
24 lines
400 B
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#include <stdint.h>
|
|
#include <avr/io.h>
|
|
#include <avr/interrupt.h>
|
|
#include <avr/pgmspace.h>
|
|
#include <avr/eeprom.h>
|
|
#include <util/delay.h>
|
|
#include <util/atomic.h>
|
|
#include <stdio.h>
|
|
|
|
#define SOFTTIMERNUMS 4
|
|
#include "softtimer.h"
|
|
|
|
extern uint8_t foo;
|
|
extern uint16_t bar;
|
|
extern uint16_t timertmp;
|
|
extern uint16_t temperatures[];
|
|
|
|
void baz();
|
|
|
|
#endif //__MAIN_H
|