- 23 Apr, 2011 1 commit
-
-
Dean Camera authored
-
- 10 Apr, 2011 1 commit
-
-
Dean Camera authored
Remove redundant type information for bitfield elements, other than the signed/unsignedness of the element. Change type of USB_SelectedPipe and USB_SelectedEndpoint for the AVR32 UC3 architecture to uint32_t to reduce the compiled code size.
-
- 04 Apr, 2011 1 commit
-
-
Dean Camera authored
Conditionally add available address spaces to the address space enum, for multiple address space architectures. Update Doxygen configuration file for the latest Doxygen release. Minor documentation updates.
-
- 21 Mar, 2011 1 commit
-
-
Dean Camera authored
-
- 15 Mar, 2011 1 commit
-
-
Dean Camera authored
Updated the software USART code in the XPLAIN Bridge application so that the incomming bits are sampled at their mid-point instead of starting point, to give maximum reliability (thanks to Anton).
-
- 11 Mar, 2011 1 commit
-
-
Dean Camera authored
Add structure padding to the appropriate descriptor structures to maintain correct alignments on larger architectures. Fix EVK1101 swapped joystick Right/Down masks.
-
- 28 Feb, 2011 1 commit
-
-
Dean Camera authored
Add in USB_INT_RegisterHandlers() internal function to register the interrupt handler routines used by LUFA. Add dummy loads after clearing the interrupt lines according to the datasheet. Add in temporary global interrupts enable/disable macros.
-
- 26 Feb, 2011 1 commit
-
-
Dean Camera authored
-
- 19 Feb, 2011 1 commit
-
-
Dean Camera authored
-
- 16 Feb, 2011 1 commit
-
-
Dean Camera authored
-
- 09 Feb, 2011 1 commit
-
-
Dean Camera authored
Change bootloader makefiles to automatically compute the bootloader starting address from a flash size and bootloader section size, expressed in KB.
-
- 04 Feb, 2011 1 commit
-
-
Dean Camera authored
Fixed programming errors in the AVRISP-MKII project when the programming packet is a round multiple of the endpoint bank size under avrdude (thanks to Steffan Woltjer).
-
- 26 Jan, 2011 1 commit
-
-
Dean Camera authored
Fixed ReportID not being removed from the feature/out report data array in the HID class driver when Report IDs are used. Added new MAX() and MIN() convenience macros.
-
- 23 Jan, 2011 1 commit
-
-
Dean Camera authored
Change over Joystick demo HID report descriptor to use USAGE_MINIMUM and USAGE_MAXIMUM when describing the joystick buttons, to allow for easy extension of the number of supported buttons.
-
- 22 Jan, 2011 1 commit
-
-
Dean Camera authored
Changed AVRISP-MKII project to use the Watchdog interrupt for command timeouts, to reduce CPU usage and free timer 0 for other uses in the future.
-
- 10 Jan, 2011 1 commit
-
-
Dean Camera authored
Altered all endpoint/pipe stream transfers so that the new BytesProcessed parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk). Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions. Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it. Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov).
-
- 17 Dec, 2010 1 commit
-
-
Dean Camera authored
Fixed incorrect endpoint initialisation order in the LowLevel DualVirtualSerial demo (thanks to Rick Drolet).
-
- 23 Nov, 2010 1 commit
-
-
Dean Camera authored
Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy. Minor documentation improvements.
-
- 21 Nov, 2010 1 commit
-
-
Dean Camera authored
-
- 17 Oct, 2010 1 commit
-
-
Dean Camera authored
-
- 13 Oct, 2010 1 commit
-
-
Dean Camera authored
-
- 29 Sep, 2010 1 commit
-
-
Dean Camera authored
Changed default value for the reset polarity parameter in the AVRISP-MKII project so that it defaults to active low drive. Fixed incorrect USB_DeviceState value when unconfiguring the device without an address set.
-
- 28 Sep, 2010 1 commit
-
-
Dean Camera authored
Added CDC functional descriptor structs to the Low Level CDC demos and CDC class bootloader, to improve the readability of the descriptors. Fixed BootloaderCDC project failing on some operating systems due to removed Line Encoding options (thanks to Alexey Belyaev).
-
- 15 Sep, 2010 1 commit
-
-
Dean Camera authored
-
- 09 Sep, 2010 1 commit
-
-
Dean Camera authored
Added LEDs_ToggleLEDs() function to several board LED drivers which were missing it (thanks to Andrei Krainev). Simplify some of the LED driver functions to produce more compact code.
-
- 04 Sep, 2010 1 commit
-
-
Dean Camera authored
-
- 03 Sep, 2010 1 commit
-
-
Dean Camera authored
Added board hardware driver support for the Olimex AVR-USB-162 development board (thanks to Steve Fawcett).
-
- 31 Aug, 2010 1 commit
-
-
Dean Camera authored
Fix incorrect ADC driver documentation for the parameters of ADC_Init(), fix incorrect call to ADC_Init() in the TemperatureDatalogger project.
-
- 01 Aug, 2010 1 commit
-
-
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.
-
- 29 Jul, 2010 1 commit
-
-
Dean Camera authored
-
- 15 Jul, 2010 1 commit
-
-
Dean Camera authored
Fixed HID device class driver still using PrevReportINBuffer for GetReport control requests even when it has been set to NULL by the user application (thanks to Axel Rohde).
-
- 08 Jul, 2010 1 commit
-
-
Dean Camera authored
Add a new RFCOMM_ChannelOpened() callback event for when logical RFCOMM channels are opened in the BluetoothHost demo. Make the demo echo back sent characters to the remote device.
-
- 23 Jun, 2010 1 commit
-
-
Dean Camera authored
Add TEST RFCOMM command handler. Remove the RFCOMM channel UseUIFrame element, as the Bluetooth adaptions to RFCOMM only allow UIH frames to be used.
-
- 07 Jun, 2010 1 commit
-
-
Dean Camera authored
Make the RFCOMM_SendFrame() function correctly generate frames from the input parameters, change addressing to use the raw DLCI address plus flags.
-
- 31 May, 2010 1 commit
-
-
Dean Camera authored
Remove void* arithmetic in the USB_GetNextDescriptor() static inline function, to make the header file C++ compatible once again. Implement workaround for an obscure GCC bug which can cause incorrect code generation under some circumstances when the void* is re-cast.
-
- 08 May, 2010 1 commit
-
-
Dean Camera authored
Add svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
-
- 03 May, 2010 1 commit
-
-
Dean Camera authored
Added new ENDPOINT_*_BusSuspended error code to the Endpoint function, so that the stream functions early-abort if the bus is suspended before or during a transfer.
-
- 19 Apr, 2010 1 commit
-
-
Dean Camera authored
Minor documentation improvements.
-
- 30 Mar, 2010 1 commit
-
-
Dean Camera authored
Add button support for the BENITO board target.
-
- 25 Mar, 2010 1 commit
-
-
Dean Camera authored
All Class Driver Host mode demos now correctly set the board LEDs to READY once the enumeration process has completed. Fixed Still Image Host class driver not resetting the transaction ID when a new session is opened, fixed driver not sending a valid session ID to the device.
-