You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

BootloaderPrinter.h 4.2KB

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