Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed all Device mode LowLevel demos and Device Class drivers so that the ↵ | Dean Camera | 2010-08-22 | 12 | -134/+63 |
| | | | | control request is acknowledged and any data transferred as quickly as possible without any processing inbetween sections, so that long callbacks or event handlers will not break communications with the host by exceeding the maximum control request stage timeout period. | ||||
* | Clarify in the documentation that the Audio demos and driver is for the ↵ | Dean Camera | 2010-08-21 | 4 | -16/+16 |
| | | | | Audio 1.0 specification, not the newer (and more advanced/less supported) 2.0 specification. | ||||
* | Remove unneccesary call to USB_Device_EnableSOFEvents() in the MassStorage ↵ | Dean Camera | 2010-08-21 | 2 | -4/+0 |
| | | | | and MIDI Device Class demos. | ||||
* | Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage ↵ | Dean Camera | 2010-08-20 | 2 | -4/+6 |
| | | | | class driver, to indicate when a previously not ready removable medium has now become ready for the host's use (thanks to Martin Degelsegger) | ||||
* | Fixed MassStorage based demos and projects resetting the SCSI sense values ↵ | Dean Camera | 2010-08-18 | 9 | -179/+166 |
| | | | | | | 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. | ||||
* | Tighten up the code in the delta movement detection code in the ↵ | Dean Camera | 2010-08-09 | 4 | -32/+18 |
| | | | | MouseHostWithParser and JoystickHostWithParser demos. Make the ClassDriver JoystickHostWithParser demo use the HID_ALIGN_DATA() macro instead of manual shifting and casting. | ||||
* | Removed complicated logic for the Endpoint_ConfigureEndpoint() function to ↵ | Dean Camera | 2010-08-09 | 30 | -322/+217 |
| | | | | | | 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. | ||||
* | Add notification endpoint to the incomplete TMC demo. | Dean Camera | 2010-08-09 | 3 | -5/+29 |
| | |||||
* | Fix invocations of avr-size in all makefiles broken on unpatched *nix ↵ | Dean Camera | 2010-08-08 | 54 | -56/+221 |
| | | | | systems, due to the recent update to the latest WinAVR makefile template. | ||||
* | Ensure all demos now compile in C99 standards mode, and not GNU99 (C99 + GNU ↵ | Dean Camera | 2010-08-03 | 5 | -15/+15 |
| | | | | extensions). | ||||
* | Hide the PROGMEM attribute from Doxygen, as it appears to confuse the parser ↵ | Dean Camera | 2010-08-02 | 51 | -51/+102 |
| | | | | in some situations. | ||||
* | Fixed Serial peripheral driver not turning off the USART before ↵ | Dean Camera | 2010-07-31 | 1 | -3/+3 |
| | | | | reconfiguring it, which would cause incorrect operation to occur (thanks to Bob Paddock). | ||||
* | Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵ | Dean Camera | 2010-07-30 | 2 | -2/+2 |
| | | | | due to its wide use in technical standards. | ||||
* | More spell checking of all source files -- correct missed errors, switch to ↵ | Dean Camera | 2010-07-30 | 59 | -59/+59 |
| | | | | EN-GB spelling dictionary. | ||||
* | Fix typo in DualVirtualSerial.c due to the changed CDC Device APIs that was ↵ | Dean Camera | 2010-07-30 | 1 | -1/+1 |
| | | | | preventing the demo from being compiled. | ||||
* | Altered the CDC Deivice and Host Class drivers' receive byte routines, so ↵ | Dean Camera | 2010-07-30 | 4 | -12/+9 |
| | | | | | | 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. | ||||
* | Oops - need to turn off USART via control register B before reconfiguring, ↵ | Dean Camera | 2010-07-30 | 1 | -4/+4 |
| | | | | fix ordering of USART control register modifications in the Benito and USBtoSerial projects. | ||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 72 | -301/+301 |
| | |||||
* | Added support to the AVRISP-MKII project for ISP speeds slower than 125KHz ↵ | Dean Camera | 2010-07-29 | 3 | -3/+3 |
| | | | | | | via a new software SPI driver. Added new SPI_ORDER_* data order masks to the SPI peripheral driver. | ||||
* | Add TMC header read and write functions, so that TMC data can now be ↵ | Dean Camera | 2010-07-28 | 3 | -53/+89 |
| | | | | | | exchanged in both directions. Minor update to the LowLevel MassStorage device demo, so that the ReadInCommandBlock() performs the data OUT endpoint selection and packet arrival test. | ||||
* | Move over message ID specific header data to unions inside the standard TMC ↵ | Dean Camera | 2010-07-27 | 2 | -7/+36 |
| | | | | header structure, so that all header data is read in one chunk in the incomplete TMC demo. | ||||
* | Rename reserved members of all structs so that they are uniformly named ↵ | Dean Camera | 2010-07-26 | 7 | -54/+82 |
| | | | | | | 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 Camera | 2010-07-26 | 1 | -1/+22 |
| | | | | Measurement Class demo. | ||||
* | Add missing INTERRUPT_CONTROL_ENDPOINT compile time option to the Mass ↵ | Dean Camera | 2010-07-26 | 5 | -45/+60 |
| | | | | | | 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 Camera | 2010-07-26 | 5 | -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. | ||||
* | Add TMC device capabilities to the incomplete TMC demo. | Dean Camera | 2010-07-23 | 3 | -2/+67 |
| | |||||
* | Convert over internal pseudo-function macros to true inline functions for ↵ | Dean Camera | 2010-07-22 | 1 | -12/+19 |
| | | | | added type-safety and compile-checking. | ||||
* | Added start of a low level device Test and Measurement class demo (thanks to ↵ | Dean Camera | 2010-07-22 | 6 | -1/+1235 |
| | | | | Peter Lawrence). | ||||
* | Fix up minor whitespace formatting errors. | Dean Camera | 2010-07-22 | 9 | -9/+9 |
| | |||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 205 | -490/+1002 |
| | | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos. | ||||
* | Add missing const qualifiers to class drivers. | Dean Camera | 2010-07-21 | 8 | -32/+32 |
| | | | | Indent core library function parameters so that there is only one parameter per line, to increase readability. | ||||
* | Update makefiles to use the latest WinAVR/Atmel toolchain makefile template. | Dean Camera | 2010-07-19 | 62 | -3194/+2171 |
| | | | | 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 Camera | 2010-07-18 | 54 | -65/+54 |
| | | | | Extensions. | ||||
* | Disable strict aliasing explicitly in the project makefiles, as this is ↵ | Dean Camera | 2010-07-15 | 55 | -8/+60 |
| | | | | 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 Camera | 2010-07-15 | 52 | -919/+312 |
| | | | | | | 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. | ||||
* | Fix pointer aliasing warning in the Mass Storage demos. | Dean Camera | 2010-07-15 | 7 | -25/+22 |
| | |||||
* | Added const attributes to some of the class driver function parameters that ↵ | Dean Camera | 2010-07-13 | 16 | -16/+16 |
| | | | | were missing it. | ||||
* | Add AVRStudio 4 project files to the ClassDriver Device mode demos. | Dean Camera | 2010-07-13 | 14 | -0/+14 |
| | |||||
* | Add AVRStudio 4 project files to the LowLevel Device mode demos. | Dean Camera | 2010-07-13 | 12 | -0/+12 |
| | |||||
* | Add AVRStudio 4 project files to the ClassDriver Host mode demos. | Dean Camera | 2010-07-13 | 11 | -0/+11 |
| | |||||
* | Add AVRStudio 4 project files to the LowLevel Host mode demos. | Dean Camera | 2010-07-13 | 13 | -0/+13 |
| | |||||
* | Add missing eol-style properties to new source files. | Dean Camera | 2010-07-12 | 2 | -371/+371 |
| | |||||
* | Add missing clean_doxygen phony targets to the project makefiles. | Dean Camera | 2010-07-12 | 52 | -56/+102 |
| | |||||
* | Correct misspellings in the Bluetooth demo code. | Dean Camera | 2010-07-11 | 10 | -45/+45 |
| | |||||
* | Add more doxygen function documentation to the RFCOMM layer. | Dean Camera | 2010-07-11 | 2 | -2/+29 |
| | |||||
* | Oops - ACL layer Bluetooth_SendPacket() function should check and allow NULL ↵ | Dean Camera | 2010-07-11 | 3 | -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 Camera | 2010-07-11 | 12 | -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 Camera | 2010-07-09 | 1 | -2/+2 |
| | | | | incorrect copy/paste. | ||||
* | Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵ | Dean Camera | 2010-07-09 | 3 | -25/+17 |
| | | | | | | 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 Camera | 2010-07-08 | 3 | -12/+38 |
| | | | | channels are opened in the BluetoothHost demo. Make the demo echo back sent characters to the remote device. |