summaryrefslogtreecommitdiff
path: root/firmware/inc/driver/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/inc/driver/device.h')
-rw-r--r--firmware/inc/driver/device.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/inc/driver/device.h b/firmware/inc/driver/device.h
new file mode 100644
index 0000000..b8528c2
--- /dev/null
+++ b/firmware/inc/driver/device.h
@@ -0,0 +1,25 @@
+/**
+ *
+ * Author: Dylan Muller
+ * Copyright (c) 2025
+ * All rights reserved.
+ *
+ * - Commercial/IP use prohibited.
+ * - Attribution required.
+ * See License.txt
+ *
+ */
+
+#ifndef DEVICE_H_
+#define DEVICE_H_
+
+#include <stdint.h>
+
+typedef struct
+{
+ uint8_t dev_id;
+ uint8_t dev_ss;
+ uint8_t* dev_port;
+} t_dev;
+
+#endif