summaryrefslogtreecommitdiff
path: root/usb/device/dfu/dfu_driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'usb/device/dfu/dfu_driver.c')
-rw-r--r--usb/device/dfu/dfu_driver.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/usb/device/dfu/dfu_driver.c b/usb/device/dfu/dfu_driver.c
index 832ccbb..c9a9f03 100644
--- a/usb/device/dfu/dfu_driver.c
+++ b/usb/device/dfu/dfu_driver.c
@@ -22,6 +22,9 @@
#include <unistd.h>
+#include <board.h>
+#include <core_cm3.h>
+
#include <utility/trace.h>
#include <usb/common/core/USBInterfaceDescriptor.h>
@@ -462,3 +465,19 @@ void USBDFU_Initialize(const USBDDriverDescriptors *pDescriptors)
USBD_Init();
}
+
+void USBDFU_SwitchToApp(void)
+{
+ /* make sure the MAGIC is not set to enter DFU again */
+ *(unsigned int *)USB_DFU_MAGIC_ADDR = 0;
+
+ /* disconnect from USB to ensure re-enumeration */
+ USBD_Disconnect();
+
+ /* disable any interrupts during transition */
+ __disable_irq();
+
+ /* Tell the hybrid to execute FTL JUMP! */
+ //BootIntoApp();
+ RSTC_ProcessorReset();
+}
personal git repositories of Harald Welte. Your mileage may vary