aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-2611-66/+94
| | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code.
* Add comments to the currently completed portions of the incomplete Test and ↵Dean Camera2010-07-261-1/+22
| | | | Measurement Class demo.
* Add missing INTERRUPT_CONTROL_ENDPOINT compile time option to the Mass ↵Dean Camera2010-07-267-45/+62
| | | | | | 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.
* Add stream callback flags and class specific control request handler code to ↵Dean Camera2010-07-265-18/+167
| | | | | | the incomplete Test and Measurement Class device demo. Change over the keyboard demo's manufacturer name back to the primary author of the demo.
* Added periodic flush timer to the Benito project. Alter the serial ↵Dean Camera2010-07-255-14/+29
| | | | transmission code so that sent bytes do not block the remainder of the main program code from running.
* Add TMC device capabilities to the incomplete TMC demo.Dean Camera2010-07-234-3/+68
|
* Update size of compiled Mouse demo in documentation, fix indenting in Device.h.Dean Camera2010-07-232-2/+2
|
* Convert over internal pseudo-function macros to true inline functions for ↵Dean Camera2010-07-2221-1037/+1671
| | | | added type-safety and compile-checking.
* Future proof the XPROG protocol of the AVRISP-MKII project, so that non PDI ↵Dean Camera2010-07-221-2/+2
| | | | and TPI requests return failure.
* Added start of a low level device Test and Measurement class demo (thanks to ↵Dean Camera2010-07-229-3/+1238
| | | | Peter Lawrence).
* Fix up minor whitespace formatting errors.Dean Camera2010-07-229-9/+9
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-21271-625/+1316
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Replace internal Pipe_BytesToEPSizeMask() routine with a new version which ↵Dean Camera2010-07-211-12/+10
| | | | results in smaller code.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-2179-330/+586
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel ↵Dean Camera2010-07-2120-53/+72
| | | | | | | | directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h. Rename LowLevel.c/.h to USBController.c/.h. Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports.
* Add missing const qualifier to the parameters of the ↵Dean Camera2010-07-213-208/+198
| | | | | | USB_GetNextDescriptorComp() function. Reduce spacing of the structure elements in StdDescriptors.h to make the code more readable.
* Fixed MIDI_Device_SendEventPacket() not correctly waiting for the endpoint ↵Dean Camera2010-07-202-1/+2
| | | | to become ready (thanks to Robin Green).
* Update makefiles to use the latest WinAVR/Atmel toolchain makefile template.Dean Camera2010-07-19116-4245/+2973
| | | | 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.
* Change over all makefiles to use C99 standards mode, rather than C99 + GNU ↵Dean Camera2010-07-1870-105/+94
| | | | Extensions.
* Disable strict aliasing explicitly in the project makefiles, as this is ↵Dean Camera2010-07-1572-16/+82
| | | | 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.
* Removed the automated checking of event names in the demo, project and ↵Dean Camera2010-07-1574-1198/+411
| | | | | | 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.
* Added ability to set the serial baud rate via the user's terminal in the ↵Dean Camera2010-07-159-15/+40
| | | | XPLAINBridge project.
* Fix pointer aliasing warning in the Mass Storage demos.Dean Camera2010-07-1510-34/+28
|
* Fixed possible buffer overrun in the XPLAINBridge project when in serial ↵Dean Camera2010-07-155-2/+62
| | | | bridge mode.
* Fixed HID device class driver still using PrevReportINBuffer for GetReport ↵Dean Camera2010-07-154-3/+6
| | | | control requests even when it has been set to NULL by the user application (thanks to Axel Rohde).
* Change AVRISP-MKII and XPLAINBridge descriptors to indicate that the device ↵Dean Camera2010-07-136-6/+11
| | | | is bus-powered only. Add compile time options to reduce the compiled size of the firmware.
* Remove the timeout period extension code from the AVRISP project, as no ↵Dean Camera2010-07-139-74/+33
| | | | 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.
* Added const attributes to some of the class driver function parameters that ↵Dean Camera2010-07-1336-61/+63
| | | | were missing it.
* Add AVRStudio 4 project files to the ClassDriver Device mode demos.Dean Camera2010-07-1316-2/+16
|
* Add AVRStudio 4 project files to the LowLevel Device mode demos.Dean Camera2010-07-1313-1/+13
|
* Add AVRStudio 4 project files to the ClassDriver Host mode demos.Dean Camera2010-07-1312-1/+12
|
* Add AVRStudio 4 project files to the LowLevel Host mode demos.Dean Camera2010-07-1316-4/+15
|
* Add AVRStudio 4 project files for the library bootloaders.Dean Camera2010-07-134-2/+4
|
* Add remaining AVRStudio project files to the library projects.Dean Camera2010-07-136-3/+6
|
* Add first lot of AVRStudio project files for some of the library projects.Dean Camera2010-07-1341-4/+11
|
* Rename the AVRISP main source files to AVRISP-MKII so that it matches the ↵Dean Camera2010-07-136-3/+4
| | | | project name. Add AVRStudio project file for the AVRISP-MKII project.
* Add missing eol-style properties to new source files.Dean Camera2010-07-123-423/+423
|
* Add missing clean_doxygen phony targets to the project makefiles.Dean Camera2010-07-1266-70/+128
|
* Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer ↵Dean Camera2010-07-122-3/+3
| | | | overruns will not occur regardless of hardware and baud rate settings.
* Alter the ring buffer library headers to have both atomic and non-atomic ↵Dean Camera2010-07-127-26/+136
| | | | | | 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.
* Add glitch protection to the software UART in the XPLAINBridge project code, ↵Dean Camera2010-07-122-8/+14
| | | | so that very short glitches on the RX line don't cause a frame reception to occur.
* Major changes to the XPLAINBridge software UART code for performance and ↵Dean Camera2010-07-114-55/+61
| | | | reliability. New code reduces the number of missed characters and misread characters.
* Correct misspellings in the Bluetooth demo code.Dean Camera2010-07-1111-46/+46
|
* Add more doxygen function documentation to the RFCOMM layer.Dean Camera2010-07-112-2/+29
|
* Oops - ACL layer Bluetooth_SendPacket() function should check and allow NULL ↵Dean Camera2010-07-113-18/+29
| | | | | | channels, since that indicates a control channel request. Fix up Doxgen documentation for the Bluetooth stack code.
* Rename Bluetooth stack function parameters to clearly indicate what sort of ↵Dean Camera2010-07-1112-145/+153
| | | | | | | | Bluetooth channel (ACL, RFCOMM) is required for each parameter, to make the code easier to read. Add a new RFCOMM_ChannelSignalsReceived() Bluetooth stack callback from the RFCOMM layer for when the remote device sends new terminal control signals. Fix RFCOMM_SendData() not aborting correctly when the requested RFCOMM channel is not found.
* Oops - fix errors in the MassStorageKeyboard SCSI driver file due to ↵Dean Camera2010-07-091-2/+2
| | | | incorrect copy/paste.
* Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵Dean Camera2010-07-098-39/+62
| | | | | | functions so that they compile down in most instances to minimal loads and stores rather than complicated shifts. Fixed SCSI.c implementations of all the demos/projects casting the block count to a 32-bit temporary before calling SwapEndian_16().
* Add a new RFCOMM_ChannelOpened() callback event for when logical RFCOMM ↵Dean Camera2010-07-084-12/+39
| | | | channels are opened in the BluetoothHost demo. Make the demo echo back sent characters to the remote device.
* Add a new RFCOMM service callback for when new data has been received on a ↵Dean Camera2010-07-083-5/+18
| | | | valid RFCOMM channel.