Skip to content
Snippets Groups Projects
  1. Feb 10, 2011
  2. Jan 30, 2011
    • Dean Camera's avatar
      Oops - fix up some calls to the old function names, include Serial Peripheral... · 9051d3be
      Dean Camera authored
      Oops - fix up some calls to the old function names, include Serial Peripheral driver in the RNDISEthernetHost project.
      9051d3be
    • Dean Camera's avatar
      Add new HID_DESCRIPTOR_VENDOR() macro, change over all projects and Device... · e6dc9516
      Dean Camera authored
      Add new HID_DESCRIPTOR_VENDOR() macro, change over all projects and Device ClassDriver demos to use it.
      
      Fix reversed byte ordering of multi-byte HID data.
      
      Added support to the HID parser for extended USAGE items that contain the usage page as well as the usage index.
      
      Removed the HID_IOF_NON_VOLATILE and HID_IOF_VOLATILE flags from HID INPUT items where the flag is invalid. Changed over HID OUTPUT items to use HID_IOF_NON_VOLATILE.
      
      Change over MagStripe project to use HID_DESCRIPTOR_KEYBOARD() for its HID report. Change over MouseHostDevice demo to use HID_DESCRIPTOR_MOUSE() for its HID report.
      e6dc9516
  3. Jan 01, 2011
  4. Dec 31, 2010
  5. Dec 26, 2010
    • Dean Camera's avatar
      Make a new general RingBuffer.h misc library driver, instead of the... · 39ac72f2
      Dean Camera authored
      Make a new general RingBuffer.h misc library driver, instead of the per-application LightweightRingBuff.h ring buffers. Change over projects to use the new driver.
      
      Add ORDERED_EP_CONFIG to the device Projects (only) that use only a single class driver, or where the endpoint ordering is fixed, to save on compiled binary size.
      
      Added new GCC_FORCE_POINTER_ACCESS() macro to correct GCC's mishandling of struct pointers.
      39ac72f2
  6. Dec 12, 2010
  7. Nov 23, 2010
  8. Nov 05, 2010
  9. Nov 03, 2010
  10. Oct 28, 2010
  11. Oct 13, 2010
  12. Aug 22, 2010
  13. Aug 09, 2010
    • Dean Camera's avatar
      Removed complicated logic for the Endpoint_ConfigureEndpoint() function to use... · 508e905d
      Dean Camera authored
      Removed complicated logic for the Endpoint_ConfigureEndpoint() function to use inlined or function called versions depending of if the given bank size is a compile time constant, as the compiler does a better job of optimizing with basic code.
      
      Changed over all device demos to use a clearer algorithm for the configuring of the application's endpoints.
      508e905d
  14. Aug 01, 2010
    • Dean Camera's avatar
      Fix XPLAINBridge project discarding characters from the USB interface due to a... · ff09cf9c
      Dean Camera authored
      Fix XPLAINBridge project discarding characters from the USB interface due to a double read from the endpoint.
      
      Make XPLAINBridge and USBtoSerial projects more reliable by forcing a flush if the UART-to-USB buffer becomes nearly full.
      
      Reduce locking in the LightweightRingBuffer.h header files by only locking on the update of the buffer count, and require insertions and removals from each buffer to occur in only one execution thread.
      
      Fix CDC_*_ReceiveByte() returning 0 when the interface is not configured, instead of the new -1 error value.
      
      Fix CDC_Host_ReceiveByte() not re-freezing the pipe if no packet has been received.
      
      Remove redundant Pipe token set commands in the CDC and RNDIS host class drivers.
      ff09cf9c
  15. Jul 31, 2010
  16. Jul 30, 2010
  17. Jul 29, 2010
  18. Jul 15, 2010
  19. Jul 12, 2010
    • Dean Camera's avatar
      Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer... · 8de31cbb
      Dean Camera authored
      Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer overruns will not occur regardless of hardware and baud rate settings.
      8de31cbb
    • Dean Camera's avatar
      Alter the ring buffer library headers to have both atomic and non-atomic... · 0bcc82ac
      Dean Camera authored
      Alter the ring buffer library headers to have both atomic and non-atomic insertion/removal routines. Modify the existing projects so that buffer operations performed in an ISR use the shorted non-atomic versions, as they are already performed in a blocking ISR.
      
      Alter USBtoSerial demo so that it does not enter a blocking loop to send data from the USB to the USART, as this can cause dropped bytes in the reception code if large amounts of data are sent in both directions at the same time. Added a flush timer to the USBtoSerial code for the USART to USB interface, so that multiple bytes can be sent in the same USB packet.
      0bcc82ac
  20. May 26, 2010
  21. May 08, 2010
  22. May 02, 2010
    • Dean Camera's avatar
      Change AVRISP project's timeout to be interrupt based again, but make the... · 3d28d53c
      Dean Camera authored
      Change AVRISP project's timeout to be interrupt based again, but make the interrupt itself interruptable and use a seperate assembly file to hand-optimize the ISR code.
      
      Removed the cast to uint16_t on the set baud rate in the USBtoSerial project, so that the higher >1M baud rates can be selected (thanks to Steffan).
      3d28d53c
  23. Apr 28, 2010
  24. Mar 16, 2010
  25. Dec 30, 2009
  26. Dec 28, 2009
  27. Nov 06, 2009
  28. Oct 26, 2009
  29. Oct 18, 2009
  30. Aug 16, 2009
  31. Aug 05, 2009
    • Dean Camera's avatar
      Fixed issue in USBtoSerial demos where the USART Rx line was not having its... · 99c447c7
      Dean Camera authored
      Fixed issue in USBtoSerial demos where the USART Rx line was not having its pullup enabled at startup, leading to noise being received from the Rx pin when left floating.
      
      Removed unused relative Common.h header include from the DriverStubs board stub drivers.
      
      Fixed Benito programmer, use the correct LED functions where needed to ensure correct status display at all times.
      99c447c7
    • Dean Camera's avatar
      Renamed all library events to properly seperate out Device and Host mode... · c5038f1b
      Dean Camera authored
      Renamed all library events to properly seperate out Device and Host mode events. Changed the firing conditions for some events to ensure that events are fired by their own USB mode only.
      
      Remove VBUS events - not needed as the library takes care of VBUS detection and feedback on supported AVRs via the USB_Device_Connected and USB_Device_Disconnected events.
      
      Fixed incorrect Host state assignment in the incomplete BluetoothHost demo.
      c5038f1b
  32. Jul 27, 2009
  33. Jul 23, 2009
  34. Jul 21, 2009
    • Dean Camera's avatar
      Added new USB_DeviceState variable to keep track of the current Device mode USB state. · e071f389
      Dean Camera authored
      Added new Endpoint_ClearStatusStage() convenience function to assist with the status stages of control transfers.
      
      Removed vague USB_IsConnected global - test USB_DeviceState or USB_HostState explicitly to gain previous functionality.
      
      Removed USB_IsSuspended global - test USB_DeviceState against DEVICE_STATE_Suspended instead.
      
      Fixed possible enumeration errors from spinloops which may fail to exit if the USB connection is severed before the exit condition becomes true.
      e071f389
  35. Jun 28, 2009
    • Dean Camera's avatar
      Added const modifiers to device mode class drivers. · f1076ac4
      Dean Camera authored
      Added parameter directions to function parameter documentation.
      
      Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
      f1076ac4
Loading