| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
USB AVR device "series" comprises of.
|
|
|
|
| |
incorrect call to ADC_Init() in the TemperatureDatalogger project.
|
|
|
|
| |
not removed when the GetDescriptor callback function's signature was altered.
|
| |
|
|
|
|
| |
so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
|
|
|
|
|
|
| |
acknowledged, so that long event handlers do do skew the timing of the control requests.
Fixed USBtoSerial and Benito project SetLineEncoding calls failing if the USART is busy, due to the RX ISR delaying the control request handler.
|
|
|
|
| |
chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
|
|
|
|
|
|
| |
before the command is executed, leading to missed SCSI sense values when the host retrieves the sense key (thanks to Martin Degelsegger).
Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant SCSI_Codes.h file as these values are part of the MassStorage Class Driver.
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
systems, due to the recent update to the latest WinAVR makefile template.
|
|
|
|
| |
extensions).
|
|
|
|
| |
in some situations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
USBTINY-MKII board target.
|
|
|
|
| |
reconfiguring it, which would cause incorrect operation to occur (thanks to Bob Paddock).
|
|
|
|
| |
due to its wide use in technical standards.
|
|
|
|
| |
EN-GB spelling dictionary.
|
| |
|
|
|
|
|
|
| |
that no data is indicated by a negative return value.
Added auto flushing of OUT data to the CDC Host Class driver's USBTask function to automatically flush the send pipe buffer.
|
|
|
|
| |
fix ordering of USART control register modifications in the Benito and USBtoSerial projects.
|
| |
|
|
|
|
| |
reconfiguring it, which could cause incorrect operation to occur (thanks to Bob Paddock).
|
|
|
|
|
|
|
|
| |
additional LED to indicate target power source.
Add support to the USBTINY-MKII's additional LED in the board's LED driver header.
Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED.
|
|
|
|
| |
project's V2Protocol command handler header file.
|
|
|
|
|
|
| |
via a new software SPI driver.
Added new SPI_ORDER_* data order masks to the SPI peripheral driver.
|
|
|
|
| |
header structure, so that all header data is read in one chunk in the incomplete TMC demo.
|
|
|
|
|
|
| |
across all demos/projects/bootloaders.
Added start of the Incomplete TMC demo's command parser code.
|
|
|
|
|
|
| |
Storage device projects/demos and incomplete Test and Measurement Class demo, which was accidentally removed during the makefile updates.
Alter Test and Measurement Class demo's request handlers to accept, process and correctly return the fields indicated in the specification.
|
|
|
|
| |
transmission code so that sent bytes do not block the remainder of the main program code from running.
|
|
|
|
| |
and TPI requests return failure.
|
|
|
|
|
|
| |
parameters, one per line, for better readability.
Add missing const qualifiers to the demos.
|
|
|
|
| |
Indent core library function parameters so that there is only one parameter per line, to increase readability.
|
|
|
|
| |
Add new module source variables to the library core makefile, so that module sources can be added to a project's makefile on a per-module rather than per-file basis.
|
|
|
|
| |
Extensions.
|
|
|
|
| |
apparently enabled by default in newer AVR-GCC builds, and aliasing is used heavily for type-punning through the LUFA and third party library's codebase.
|
|
|
|
|
|
| |
bootloader makefiles due to inconsistancies between the behaviour of the command line tools used to perform the check on each platform.
Removed the internal endpoint and pipe memory allocation macros, as this is already performed directly in the code. Simplify the endpoint and pipe reset procedure.
|
|
|
|
| |
XPLAINBridge project.
|
| |
|
|
|
|
| |
bridge mode.
|
|
|
|
| |
control requests even when it has been set to NULL by the user application (thanks to Axel Rohde).
|
|
|
|
| |
is bus-powered only. Add compile time options to reduce the compiled size of the firmware.
|
|
|
|
| |
single command should ever exceed the maximum timeout period. Extend timeout period to 1 second per command, so that an accidental timeout will never occur.
|
|
|
|
| |
were missing it.
|
| |
|
| |
|
|
|
|
| |
project name. Add AVRStudio project file for the AVRISP-MKII project.
|
| |
|
|
|
|
| |
overruns will not occur regardless of hardware and baud rate settings.
|
|
|
|
|
|
| |
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.
|