compiling

This commit is contained in:
2021-04-01 15:14:50 +02:00
parent 0027a43315
commit af48c6528d
3 changed files with 38 additions and 16 deletions

View File

@ -7,6 +7,12 @@
using gpioId_t = uint16_t;
namespace gpio {
enum Levels {
LOW = 0,
HIGH = 1
};
enum Direction {
IN = 0,
OUT = 1