Finializing tests
[solderbot.git] / src / core / arduino.h
blob7247ccc364c649a37c0571b2fb87b48056413482
1 /*
2 Copyright 2008 Lukas Kropatschek lukas.krop@gmail.com
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2 of
7 the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef ARDUINO_H
19 #define ARDUINO_H
21 #include <avr/io.h>
22 #include <avr/interrupt.h>
23 #include <avr/pgmspace.h>
25 #include <string.h>
26 #include <math.h>
27 #include <stdlib.h>
28 #include <stdio.h>
30 #include "defines.h"
31 #include "binary.h"
32 #include "core.h"
33 #include "digital.h"
35 #endif