Keyboard firmwares for Atmel AVR and Cortex-M
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.

MediaController.h 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 MediaControl.c.
  29. */
  30. #ifndef _MEDIACONTROL_H_
  31. #define _MEDIACONTROL_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 <stdbool.h>
  38. #include <string.h>
  39. #include "Descriptors.h"
  40. #include <LUFA/Drivers/Board/Joystick.h>
  41. #include <LUFA/Drivers/Board/LEDs.h>
  42. #include <LUFA/Drivers/Board/Buttons.h>
  43. #include <LUFA/Drivers/USB/USB.h>
  44. #include <LUFA/Platform/Platform.h>
  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. /* Type Defines: */
  55. /** Type define for a Media Control HID report. This report contains the bits to match the usages defined
  56. * in the HID report of the device. When set to a true value, the relevant media controls on the host will
  57. * be triggered.
  58. */
  59. typedef struct
  60. {
  61. unsigned Play : 1;
  62. unsigned Pause : 1;
  63. unsigned FForward : 1;
  64. unsigned Rewind : 1;
  65. unsigned NextTrack : 1;
  66. unsigned PreviousTrack : 1;
  67. unsigned Stop : 1;
  68. unsigned PlayPause : 1;
  69. unsigned Mute : 1;
  70. unsigned VolumeUp : 1;
  71. unsigned VolumeDown : 1;
  72. unsigned RESERVED : 5;
  73. } ATTR_PACKED USB_MediaReport_Data_t;
  74. /* Function Prototypes: */
  75. void SetupHardware(void);
  76. void EVENT_USB_Device_Connect(void);
  77. void EVENT_USB_Device_Disconnect(void);
  78. void EVENT_USB_Device_ConfigurationChanged(void);
  79. void EVENT_USB_Device_ControlRequest(void);
  80. void EVENT_USB_Device_StartOfFrame(void);
  81. bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo,
  82. uint8_t* const ReportID,
  83. const uint8_t ReportType,
  84. void* ReportData,
  85. uint16_t* const ReportSize);
  86. void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo,
  87. const uint8_t ReportID,
  88. const uint8_t ReportType,
  89. const void* ReportData,
  90. const uint16_t ReportSize);
  91. #endif