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.

XPLAINBridge.h 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 XPLAINBridge.c.
  29. */
  30. #ifndef _XPLAIN_BRIDGE_H_
  31. #define _XPLAIN_BRIDGE_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 "USARTDescriptors.h"
  39. #include "AVRISPDescriptors.h"
  40. #include "Lib/V2Protocol.h"
  41. #include "Lib/SoftUART.h"
  42. #include "Config/AppConfig.h"
  43. #include <LUFA/Drivers/Board/LEDs.h>
  44. #include <LUFA/Drivers/Misc/RingBuffer.h>
  45. #include <LUFA/Drivers/USB/USB.h>
  46. #include <LUFA/Platform/Platform.h>
  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_LED1
  52. /** LED mask for the library LED driver, to indicate that the USB interface is ready. */
  53. #define LEDMASK_USB_READY LEDS_NO_LEDS
  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
  56. /** LED mask for the library LED driver, to indicate that the USB interface is busy. */
  57. #define LEDMASK_BUSY LEDS_LED1
  58. /** Firmware mode define for the USART Bridge mode. */
  59. #define MODE_USART_BRIDGE false
  60. /** Firmware mode define for the AVRISP Programmer mode. */
  61. #define MODE_PDI_PROGRAMMER true
  62. /* External Variables: */
  63. extern bool CurrentFirmwareMode;
  64. extern RingBuffer_t UARTtoUSB_Buffer;
  65. extern RingBuffer_t USBtoUART_Buffer;
  66. /* Function Prototypes: */
  67. void SetupHardware(void);
  68. void AVRISP_Task(void);
  69. void UARTBridge_Task(void);
  70. void EVENT_USB_Device_ConfigurationChanged(void);
  71. void EVENT_USB_Device_ControlRequest(void);
  72. void EVENT_USB_Device_Connect(void);
  73. void EVENT_USB_Device_Disconnect(void);
  74. void EVENT_CDC_Device_LineEncodingChanged(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo);
  75. uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
  76. const uint8_t wIndex,
  77. const void** const DescriptorAddress,
  78. uint8_t* const DescriptorMemorySpace)
  79. ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3) ATTR_NON_NULL_PTR_ARG(4);
  80. #endif