Added lot's of code-files used during work
This commit is contained in:
parent
644121b478
commit
56d9bdd39e
155 changed files with 23423 additions and 0 deletions
9
source/Code/HAL/board.c
Normal file
9
source/Code/HAL/board.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "HAL/board.h"
|
||||
|
||||
board::board() {
|
||||
|
||||
}
|
||||
|
||||
board::~board() {
|
||||
|
||||
}
|
14
source/Code/HAL/board.h
Normal file
14
source/Code/HAL/board.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef _BOARD_H
|
||||
#define _BOARD_H
|
||||
|
||||
#include <avr/io.h>
|
||||
|
||||
class board
|
||||
{
|
||||
private:
|
||||
public:
|
||||
board();
|
||||
~board();
|
||||
};
|
||||
|
||||
#endif
|
Reference in a new issue