Added lot's of code-files used during work

This commit is contained in:
sicarius 2007-02-11 18:32:03 +00:00
parent 644121b478
commit 56d9bdd39e
155 changed files with 23423 additions and 0 deletions

9
source/Code/HAL/board.c Normal file
View file

@ -0,0 +1,9 @@
#include "HAL/board.h"
board::board() {
}
board::~board() {
}

14
source/Code/HAL/board.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _BOARD_H
#define _BOARD_H
#include <avr/io.h>
class board
{
private:
public:
board();
~board();
};
#endif