mrobe500 bootloader fix

Change-Id: I0ab99a427df34ef6c5899a280953250660ffc156
This commit is contained in:
Solomon Peachy 2020-10-13 21:33:55 -04:00
parent cddd8d66e2
commit 105a0eb0b7

View file

@ -31,21 +31,13 @@
#include "font.h" #include "font.h"
#include "adc.h" #include "adc.h"
#include "backlight.h" #include "backlight.h"
#include "backlight-target.h"
#include "button.h" #include "button.h"
#include "panic.h"
#include "power.h" #include "power.h"
#include "file.h" #include "file.h"
#include "common.h" #include "common.h"
#include "rb-loader.h" #include "rb-loader.h"
#include "loader_strerror.h" #include "loader_strerror.h"
#include "rbunicode.h"
#include "usb.h" #include "usb.h"
#include "spi.h"
#include "uart-target.h"
#include "tsc2100.h"
#include "time.h"
#include "system-arm.h"
#include "version.h" #include "version.h"
void main(void) void main(void)
@ -146,5 +138,5 @@ void main(void)
rc = kernel_entry(); rc = kernel_entry();
/* Should not get here! */ /* Should not get here! */
return rc; while(1);
} }