Descriptors.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 Descriptors.c.
  29. */
  30. #ifndef _DESCRIPTORS_H_
  31. #define _DESCRIPTORS_H_
  32. /* Includes: */
  33. #include <LUFA/Drivers/USB/USB.h>
  34. #include <avr/pgmspace.h>
  35. /* Macros: */
  36. /** Endpoint address of the Printer device-to-host data IN endpoint. */
  37. #define PRINTER_IN_EPADDR (ENDPOINT_DIR_IN | 3)
  38. /** Endpoint address of the Printer host-to-device data OUT endpoint. */
  39. #define PRINTER_OUT_EPADDR (ENDPOINT_DIR_OUT | 4)
  40. /** Size in bytes of the Printer data endpoints. */
  41. #define PRINTER_IO_EPSIZE 64
  42. /* Type Defines: */
  43. /** Type define for the device configuration descriptor structure. This must be defined in the
  44. * application code, as the configuration descriptor contains several sub-descriptors which
  45. * vary between devices, and which describe the device's usage to the host.
  46. */
  47. typedef struct
  48. {
  49. USB_Descriptor_Configuration_Header_t Config;
  50. // Printer Interface
  51. USB_Descriptor_Interface_t Printer_Interface;
  52. USB_Descriptor_Endpoint_t Printer_DataInEndpoint;
  53. USB_Descriptor_Endpoint_t Printer_DataOutEndpoint;
  54. } USB_Descriptor_Configuration_t;
  55. /** Enum for the device interface descriptor IDs within the device. Each string descriptor
  56. * should have a unique ID index associated with it, which can be used to refer to the
  57. * interface from other descriptors.
  58. */
  59. enum InterfaceDescriptors_t
  60. {
  61. INTERFACE_ID_Printer = 0, /**< Printer interface descriptor ID */
  62. };
  63. /** Enum for the device string descriptor IDs within the device. Each string descriptor should
  64. * have a unique ID index associated with it, which can be used to refer to the string from
  65. * other descriptors.
  66. */
  67. enum StringDescriptors_t
  68. {
  69. STRING_ID_Language = 0, /**< Supported Languages string descriptor ID (must be zero) */
  70. STRING_ID_Manufacturer = 1, /**< Manufacturer string ID */
  71. STRING_ID_Product = 2, /**< Product string ID */
  72. };
  73. /* Function Prototypes: */
  74. uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
  75. const uint16_t wIndex,
  76. const void** const DescriptorAddress)
  77. ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3);
  78. #endif