summaryrefslogtreecommitdiff
path: root/hid/lib/drivers/keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'hid/lib/drivers/keyboard.h')
-rw-r--r--hid/lib/drivers/keyboard.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/hid/lib/drivers/keyboard.h b/hid/lib/drivers/keyboard.h
index fe724247..44ffe61a 100644
--- a/hid/lib/drivers/keyboard.h
+++ b/hid/lib/drivers/keyboard.h
@@ -21,9 +21,14 @@
#pragma once
+#include <stdint.h>
+#include "driver.h"
-typedef struct {
- bool caps;
- bool scroll;
- bool num;
-} KeyboardLedsState;
+namespace DRIVERS {
+
+ typedef struct {
+ bool caps;
+ bool scroll;
+ bool num;
+ } KeyboardLedsState;
+}