summaryrefslogtreecommitdiffstats
path: root/source/Code/HAL/board.h
blob: f0133c1c02491f5da47bc7f122286cc666bf7bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _BOARD_H
#define _BOARD_H

#include <avr/io.h>

class board 
{
private:
public:
	board();
	~board();
};

#endif