add SW reset (#107)

This commit is contained in:
tomaszduda23
2022-09-12 11:53:52 +02:00
committed by GitHub
parent ce43938d28
commit 615863a848
7 changed files with 106 additions and 3 deletions

View File

@@ -24,6 +24,7 @@
#include "keyboard.h"
#include "mouse.h"
#include "storage.h"
#include "board.h"
namespace DRIVERS {
@@ -31,5 +32,6 @@ namespace DRIVERS {
static Keyboard *makeKeyboard(type _type);
static Mouse *makeMouse(type _type);
static Storage* makeStorage(type _type);
static Board* makeBoard(type _type);
};
}