X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/f8a1dc7424cd83f2f3e87274010d379a661b76e4..be33d3a5156ea3fde221c9e174ad0405eb8d1f8d:/Bootloaders/MassStorage/BootloaderMassStorage.h diff --git a/Bootloaders/MassStorage/BootloaderMassStorage.h b/Bootloaders/MassStorage/BootloaderMassStorage.h index b12cbafe5..dd67381f7 100644 --- a/Bootloaders/MassStorage/BootloaderMassStorage.h +++ b/Bootloaders/MassStorage/BootloaderMassStorage.h @@ -39,7 +39,6 @@ /* Includes: */ #include #include - #include #include #include @@ -67,14 +66,18 @@ #define LEDMASK_USB_BUSY LEDS_LED2 /* Function Prototypes: */ - static void SetupHardware(void); + int main(void) AUX_BOOT_SECTION; - void EVENT_USB_Device_Connect(void); - void EVENT_USB_Device_Disconnect(void); - void EVENT_USB_Device_ConfigurationChanged(void); - void EVENT_USB_Device_ControlRequest(void); + static void SetupHardware(void) AUX_BOOT_SECTION; - bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo); + void Application_Jump_Check(void) ATTR_INIT_SECTION(3); + + void EVENT_USB_Device_Connect(void) AUX_BOOT_SECTION; + void EVENT_USB_Device_Disconnect(void) AUX_BOOT_SECTION; + void EVENT_USB_Device_ConfigurationChanged(void) AUX_BOOT_SECTION; + void EVENT_USB_Device_ControlRequest(void) AUX_BOOT_SECTION; + + bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo) AUX_BOOT_SECTION; #endif