summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index d6e3c342c9..4f31cdb58a 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -92,6 +92,10 @@
92#include "isp1362.h" 92#include "isp1362.h"
93#endif 93#endif
94 94
95#if CONFIG_USBOTG == USBOTG_M5636
96#include "m5636.h"
97#endif
98
95/*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */ 99/*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
96 100
97const char appsversion[]=APPSVERSION; 101const char appsversion[]=APPSVERSION;
@@ -282,6 +286,8 @@ void init(void)
282 usb_init(); 286 usb_init();
283#if CONFIG_USBOTG == USBOTG_ISP1362 287#if CONFIG_USBOTG == USBOTG_ISP1362
284 isp1362_init(); 288 isp1362_init();
289#elif CONFIG_USBOTG == USBOTG_M5636
290 m5636_init();
285#endif 291#endif
286 292
287 backlight_init(); 293 backlight_init();