compiling

This commit is contained in:
2021-04-01 15:14:50 +02:00
committed by IRS Cleanroom Laptop
parent ff62b75029
commit 330aba7ea5
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