diff options
author | Camil Staps | 2016-08-22 22:28:32 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-22 22:28:32 +0200 |
commit | 79bb1a9932af7bfcdab67e2a1da9d9edcba87f71 (patch) | |
tree | c9f96cd9498d1e24bc646923c5d79d13f310fbeb /firmware/src/system_config/default/system_definitions.h | |
parent | Initial commit (diff) |
old wipold
Diffstat (limited to 'firmware/src/system_config/default/system_definitions.h')
-rw-r--r-- | firmware/src/system_config/default/system_definitions.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/firmware/src/system_config/default/system_definitions.h b/firmware/src/system_config/default/system_definitions.h index 5bc5468..5a20414 100644 --- a/firmware/src/system_config/default/system_definitions.h +++ b/firmware/src/system_config/default/system_definitions.h @@ -55,9 +55,18 @@ SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES #include "system/clk/sys_clk.h"
#include "system/clk/sys_clk_static.h"
#include "system/devcon/sys_devcon.h"
+#include "system/int/sys_int.h"
+#include "system/tmr/sys_tmr.h"
+#include "driver/tmr/drv_tmr.h"
#include "system/ports/sys_ports.h"
+#include "driver/usb/usbhs/drv_usbhs.h"
+#include "usb/usb_host.h"
+#include "usb/usb_host_hub.h"
+#include "usb/usb_host_hub_interface.h"
+#include "usb/usb_host_hid.h"
+#include "usb/usb_host_hid_keyboard.h"
#include "app.h"
@@ -93,6 +102,13 @@ extern "C" { typedef struct
{
SYS_MODULE_OBJ sysDevcon;
+ SYS_MODULE_OBJ sysTmr;
+ SYS_MODULE_OBJ drvTmr0;
+ SYS_MODULE_OBJ drvUSBObject;
+
+
+ SYS_MODULE_OBJ usbHostObject0;
+
} SYSTEM_OBJECTS;
@@ -106,6 +122,7 @@ typedef struct extern SYSTEM_OBJECTS sysObj;
+
//DOM-IGNORE-BEGIN
#ifdef __cplusplus
}
|