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.
|
#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"
|
|
|
|
#endif //__MAIN_H
|