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

@@ -73,4 +73,11 @@ namespace DRIVERS {
}
}
Board* Factory::makeBoard(type _type) {
switch (_type) {
default:
return new Board(DRIVERS::DUMMY);
}
}
}