- 14 Sep, 2010 1 commit
-
-
Dean Camera authored
-
- 13 Sep, 2010 1 commit
-
-
Dean Camera authored
Fixed SET FEATURE and CLEAR FEATURE control requests directed at an unconfigured endpoint causing request timeouts.
-
- 11 Sep, 2010 2 commits
-
-
Dean Camera authored
Modified PRNT_Host_USBTask() to flush the output pipe on each call.
-
Dean Camera authored
Added new project makefile template to the library and moved board driver stub files into in a new CodeTemplates directory.
-
- 09 Sep, 2010 2 commits
-
-
Dean Camera authored
-
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.
-
- 07 Sep, 2010 1 commit
-
-
Dean Camera authored
Added new PRNT_Host_BytesReceived() and PRNT_Host_ReceiveByte() functions to the Print Host Class driver.
-
- 05 Sep, 2010 1 commit
-
-
Dean Camera authored
Added new USB_Device_GetFrameNumber() and USB_Host_GetFrameNumber() functions to retrieve the current USB frame number. Added new USB_Host_EnableSOFEvents(), USB_Host_DisableSOFEvents() and EVENT_USB_Host_StartOfFrame() for the user application handling of USB Start of Frame events while in USB Host mode. Changed over all demos, drivers and internal functions to use the current frame number over the Start of Frame flag where possible to free up the Start of Frame flag for interrupt use in the user application.
-
- 04 Sep, 2010 2 commits
-
-
Dean Camera authored
Reduced HOST_DEVICE_SETTLE_DELAY_MS to 1000ms down from 1500ms to improve device compatibility while in USB Host mode, as some devices will drop off the USB bus if no connection is made within a timeout period.
-
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).
-
- 24 Aug, 2010 2 commits
-
-
Dean Camera authored
Fixed LowLevel PrinterHost demo not sending control requests to the attached printer with the correct printer interface wIndex value.
-
Dean Camera authored
Changed the signature of the CALLBACK_USB_GetDescriptor() callback function so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
-
- 22 Aug, 2010 4 commits
-
-
Dean Camera authored
Split out endpoint and pipe stream functions into new EndpointStream.c/.h and PipeStream.c/.h files.
-
Dean Camera authored
Changed all Device mode LowLevel demos and Device Class drivers so that the 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.
-
Dean Camera authored
Moved calls to Device mode Class Driver events to after the request has been 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.
-
Dean Camera authored
Added compile time error to the AVRISP-MKII project when built for the U4 chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
-
- 20 Aug, 2010 2 commits
-
-
Dean Camera authored
Fixed critical pipe/endpoint memory allocation issue where the bank memory address space could be silently overlapped in the USB controller if the endpoints or pipes were allocated in anything other than ascending order (thanks to Martin Degelsegger).
-
Dean Camera authored
Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage class driver, to indicate when a previously not ready removable medium has now become ready for the host's use (thanks to Martin Degelsegger)
-
- 18 Aug, 2010 1 commit
-
-
Dean Camera authored
Fixed MassStorage based demos and projects resetting the SCSI sense values 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.
-
- 10 Aug, 2010 1 commit
-
-
Dean Camera authored
Fixed USB_GetHIDReportItemInfo() function modifying the given report item's data when the report item does not exist within the supplied report of a multiple report HID device.
-
- 09 Aug, 2010 3 commits
-
-
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.
-
Dean Camera authored
-
Dean Camera authored
-
- 05 Aug, 2010 1 commit
-
-
Dean Camera authored
Fixed software application start command broken in the DFU class bootloader when dfu-programmer is used due to application start address corruption.
-
- 03 Aug, 2010 1 commit
-
-
Dean Camera authored
-
- 31 Jul, 2010 1 commit
-
-
Dean Camera authored
Fixed Serial peripheral driver not turning off the USART before reconfiguring it, which would cause incorrect operation to occur (thanks to Bob Paddock).
-
- 30 Jul, 2010 4 commits
-
-
Dean Camera authored
Oops - fix mixed "initialize" and "initialise" - opt for American spelling due to its wide use in technical standards.
-
Dean Camera authored
More spell checking of all source files -- correct missed errors, switch to EN-GB spelling dictionary.
-
Dean Camera authored
Fix typo in DualVirtualSerial.c due to the changed CDC Device APIs that was preventing the demo from being compiled.
-
Dean Camera authored
Altered the CDC Deivice and Host Class drivers' receive byte routines, so 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.
-
- 29 Jul, 2010 4 commits
-
-
Dean Camera authored
-
Dean Camera authored
Fixed Benito and USBtoSerial projects not turning off the USART before reconfiguring it, which could cause incorrect operation to occur (thanks to Bob Paddock).
-
Dean Camera authored
Add special support to the AVRISP-MKII for the new model USBTINY-MKII's 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.
-
Dean Camera authored
Added support to the AVRISP-MKII project for ISP speeds slower than 125KHz via a new software SPI driver. Added new SPI_ORDER_* data order masks to the SPI peripheral driver.
-
- 25 Jul, 2010 1 commit
-
-
Dean Camera authored
Added periodic flush timer to the Benito project. Alter the serial transmission code so that sent bytes do not block the remainder of the main program code from running.
-
- 22 Jul, 2010 2 commits
-
-
Dean Camera authored
Convert over internal pseudo-function macros to true inline functions for added type-safety and compile-checking.
-
Dean Camera authored
-
- 21 Jul, 2010 1 commit
-
-
Dean Camera authored
Indent core library function parameters so that there is only one parameter per line, to increase readability.
-
- 20 Jul, 2010 1 commit
-
-
Dean Camera authored
Fixed MIDI_Device_SendEventPacket() not correctly waiting for the endpoint to become ready (thanks to Robin Green).
-