started porting over the actual bootloader code from the MLA demo

This commit is contained in:
2019-08-11 13:48:04 -04:00
parent c36474131b
commit 75d70c5200
6 changed files with 1277 additions and 2 deletions

View File

@@ -7,8 +7,11 @@
#include <xc.h>
#include "usb.h"
#include "bootloader.h"
void main(void) {
UserInit();
// initialize the USB framework
USBDeviceInit();
USBDeviceAttach();
@@ -22,6 +25,6 @@ void main(void) {
continue;
// run application specific tasks
//DANCEPAD_Tasks();
ProcessIO();
}
}