BootloaderPrinter.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 BootloaderPrinter.c.
  29. */
  30. #ifndef _BOOTLOADER_PRINTER_H_
  31. #define _BOOTLOADER_PRINTER_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 "Descriptors.h"
  39. #include "BootloaderAPI.h"
  40. #include <LUFA/Drivers/Board/LEDs.h>
  41. #include <LUFA/Drivers/USB/USB.h>
  42. #include <LUFA/Platform/Platform.h>
  43. /* Preprocessor Checks: */
  44. #if !defined(__OPTIMIZE_SIZE__)
  45. #error This bootloader requires that it be optimized for size, not speed, to fit into the target device. Change optimization settings and try again.
  46. #endif
  47. /* Macros: */
  48. /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
  49. #define LEDMASK_USB_NOTREADY LEDS_LED1
  50. /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */
  51. #define LEDMASK_USB_ENUMERATING (LEDS_LED2 | LEDS_LED3)
  52. /** LED mask for the library LED driver, to indicate that the USB interface is ready. */
  53. #define LEDMASK_USB_READY (LEDS_LED2 | LEDS_LED4)
  54. /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
  55. #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
  56. /** LED mask for the library LED driver, to indicate that the USB interface is busy. */
  57. #define LEDMASK_USB_BUSY LEDS_LED2
  58. /** Magic bootloader key to unlock forced application start mode. */
  59. #define MAGIC_BOOT_KEY 0xDC42
  60. /* Enums: */
  61. /** Intel HEX parser state machine states. */
  62. enum HEX_Parser_States_t
  63. {
  64. HEX_PARSE_STATE_WAIT_LINE, /**< Parser is waiting for a HEX Start of Line character. */
  65. HEX_PARSE_STATE_BYTE_COUNT, /**< Parser is waiting for a record byte count. */
  66. HEX_PARSE_STATE_ADDRESS_HIGH, /**< Parser is waiting for the MSB of a record address. */
  67. HEX_PARSE_STATE_ADDRESS_LOW, /**< Parser is waiting for the LSB of a record address. */
  68. HEX_PARSE_STATE_RECORD_TYPE, /**< Parser is waiting for the record type. */
  69. HEX_PARSE_STATE_READ_DATA, /**< Parser is waiting for more data in the current record. */
  70. HEX_PARSE_STATE_CHECKSUM, /**< Parser is waiting for the checksum of the current record. */
  71. };
  72. /** Intel HEX record types, used to indicate the type of record contained in a line of a HEX file. */
  73. enum HEX_Record_Types_t
  74. {
  75. HEX_RECORD_TYPE_Data = 0, /**< Record contains loadable data. */
  76. HEX_RECORD_TYPE_EndOfFile = 1, /**< End of file record. */
  77. HEX_RECORD_TYPE_ExtendedSegmentAddress = 2, /**< Extended segment start record. */
  78. HEX_RECORD_TYPE_StartSegmentAddress = 3, /**< Normal segment start record. */
  79. HEX_RECORD_TYPE_ExtendedLinearAddress = 4, /**< Extended linear address start record. */
  80. HEX_RECORD_TYPE_StartLinearAddress = 5, /**< Linear address start record. */
  81. };
  82. /* Function Prototypes: */
  83. static void SetupHardware(void);
  84. void EVENT_USB_Device_Connect(void);
  85. void EVENT_USB_Device_Disconnect(void);
  86. void EVENT_USB_Device_ConfigurationChanged(void);
  87. void EVENT_USB_Device_ControlRequest(void);
  88. #endif