BootloaderMassStorage.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2018.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2018 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. *
  28. * Header file for BootloaderMassStorage.c.
  29. */
  30. #ifndef _BOOTLOADER_MASS_STORAGE_H_
  31. #define _BOOTLOADER_MASS_STORAGE_H_
  32. /* Includes: */
  33. #include <avr/io.h>
  34. #include <avr/wdt.h>
  35. #include <avr/power.h>
  36. #include <avr/interrupt.h>
  37. #include <util/delay.h>
  38. #include <string.h>
  39. #include "Descriptors.h"
  40. #include "BootloaderAPI.h"
  41. #include "Config/AppConfig.h"
  42. #include "Lib/SCSI.h"
  43. #include <LUFA/Drivers/Board/LEDs.h>
  44. #include <LUFA/Drivers/USB/USB.h>
  45. #include <LUFA/Platform/Platform.h>
  46. /* Preprocessor Checks: */
  47. #if !defined(__OPTIMIZE_SIZE__)
  48. #error This bootloader requires that it be optimized for size, not speed, to fit into the target device. Change optimization settings and try again.
  49. #endif
  50. /* Macros: */
  51. /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
  52. #define LEDMASK_USB_NOTREADY LEDS_LED1
  53. /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */
  54. #define LEDMASK_USB_ENUMERATING (LEDS_LED2 | LEDS_LED3)
  55. /** LED mask for the library LED driver, to indicate that the USB interface is ready. */
  56. #define LEDMASK_USB_READY (LEDS_LED2 | LEDS_LED4)
  57. /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
  58. #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
  59. /** LED mask for the library LED driver, to indicate that the USB interface is busy. */
  60. #define LEDMASK_USB_BUSY LEDS_LED2
  61. /** Magic bootloader key to unlock forced application start mode. */
  62. #define MAGIC_BOOT_KEY 0xDC42
  63. /* Global Variables: */
  64. extern bool RunBootloader;
  65. /* Function Prototypes: */
  66. int main(void) AUX_BOOT_SECTION;
  67. void Application_Jump_Check(void) ATTR_INIT_SECTION(3);
  68. void EVENT_USB_Device_Connect(void) AUX_BOOT_SECTION;
  69. void EVENT_USB_Device_Disconnect(void) AUX_BOOT_SECTION;
  70. void EVENT_USB_Device_ConfigurationChanged(void) AUX_BOOT_SECTION;
  71. void EVENT_USB_Device_ControlRequest(void) AUX_BOOT_SECTION;
  72. bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo) AUX_BOOT_SECTION;
  73. #if defined(INCLUDE_FROM_BOOTLOADER_MASSSTORAGE_C)
  74. static void SetupHardware(void) AUX_BOOT_SECTION;
  75. #endif
  76. #endif