- Jul 15, 2011
-
-
Dean Camera authored
-
- Jul 11, 2011
-
-
Dean Camera authored
-
- Jul 08, 2011
-
-
Dean Camera authored
-
Dean Camera authored
Updated all host mode demos and projects to use the EVENT_USB_Host_DeviceEnumerationComplete() event callback for device configuration instead of manual host state machine manipulations in the main application task. Added new USB_Host_ConfigurationNumber global variable to indicate the selected configuration in an attached device. Renamed global state variables that are specific to a certain USB mode to clearly indicate which mode the variable relates to, by changing the USB_* prefix to USB_Device_* or USB_Host_*. Removed the HOST_STATE_WaitForDeviceRemoval and HOST_STATE_Suspended host state machine states, as these are no longer required. Altered the USB_Host_SetDeviceConfiguration() function to update the new USB_Host_ConfigurationNumber global as required. Moved out the Host mode standard request convenience/helper functions from the architecture specific Host driver files to the architecture agnostic HostStandardReq.c driver file.
-
- Jul 06, 2011
-
-
Dean Camera authored
Add the GCC -fno-split-wide-types compile time option to some of the larger user projects to reduce the compiled application size.
-
- Jul 04, 2011
-
-
Dean Camera authored
Switch the HTTP Webserver project to use the safer strlcpy() instead of strncpy() to save on manual null-termination.
-
- Jul 01, 2011
-
-
Dean Camera authored
Seperate out the device demos and project's configuration descriptor structure definitions to clearly indicate what descriptors belong to which interface.
-
- Jun 30, 2011
-
-
Dean Camera authored
-
- Jun 20, 2011
-
-
Dean Camera authored
Add new "checksource" target to the library makefiles, for automated source file existance checking.
-
Dean Camera authored
-
Dean Camera authored
-
Dean Camera authored
Make HIDReportViewer project show the IN, OUT and DATA report sizes as both bits and (rounded) bytes.
-
Dean Camera authored
Make the HID Report Parser Get/Set Report Item routines fail if a NULL pointer to a report item is given. Minor visual enhancement to the HIDReportViewer project.
-
Dean Camera authored
-
- Jun 19, 2011
-
-
Dean Camera authored
Add missing project files for the new HIDReportViewer project to upgrade its status to a finished (working) project.
-
Dean Camera authored
Move the HIDReportViewer project into the normal Projects/ folder and out of the Incomplete/ projects folder.
-
Dean Camera authored
-
- Jun 16, 2011
-
-
Dean Camera authored
-
Dean Camera authored
-
- Jun 05, 2011
-
-
Dean Camera authored
Massive corrections to the project documentation and code comments, thanks to Russian translation services provided by Andrey from Microsin.ru.
-
- Jun 03, 2011
-
-
Dean Camera authored
Added new callback to the Audio Class driver to allow for endpoint control manipulations such as data sample rates. Modified the Class Driver AudioInput and AudioOutput demos to support multiple sample rates. Fixed KeyboardHost and KeyboardHostWithParser demos displaying incorrect values when numerical keys were pressed. Fix broken LowLevel audio demo descriptors. Minor documentation fixes.
-
- Jun 01, 2011
-
-
Dean Camera authored
-
- May 29, 2011
-
-
Dean Camera authored
-
Dean Camera authored
Added missing Audio class control request definitions. Added support for the Audio class GET STATUS request so that it is correctly ACKed when sent by the host.
-
- May 27, 2011
-
-
Dean Camera authored
-
- May 26, 2011
-
-
Dean Camera authored
Fix incorrect project name in the Projects/ folder makefile.
-
Dean Camera authored
-
- May 23, 2011
-
-
Dean Camera authored
Update MediaController project to remove the Record usage (not often needed) and explicitly declare each usage for maximum clarity.
-
Dean Camera authored
Add new MediaController project, a simple Media Playback control manipulator (Play/Pause/Next Track/Volume/etc.).
-
Dean Camera authored
Correct errors in the DHCP Server application in the Webserver project, that was causing random server restarts and/or incorrectly allocated IP addresses.
-
- May 22, 2011
-
-
Dean Camera authored
Add RNDIS Device support to the Webserver project, so that the files stored on the device can be viewed from a web-browser while the board is plugged into a host machine.
-
- Apr 13, 2011
-
-
Dean Camera authored
Replace cast-as-char* byte access of multibyte variables with proper shifts and masks to preserve endianness across different architectures.
-
- Apr 10, 2011
-
-
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.
-
- Apr 08, 2011
-
-
Dean Camera authored
-
Dean Camera authored
Replace all calls and references to _delay_ms() in the code with the architecture-agnostic Delay_MS() function. Improve code generation for the Delay_MS() function on the AVR8 architecture when called with a constant input.
-
Dean Camera authored
Remove use of avr-libc specific ATOMIC_BLOCK, replace with a new per-architecture set of inline functions to retrieve and manipulate the global interrupt enable bit for each architecture. Add in documentation for the USB controller common interrupt routine which must be linked to the interrupt controller in the user application on the AVR32 UC3 architecture.
-
- Apr 04, 2011
-
-
Dean Camera authored
Renamed all low level Endpoint_Read_*, Endpoint_Write_* and Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
-
- Mar 23, 2011
-
-
Dean Camera authored
-
- Mar 21, 2011
-
-
Dean Camera authored
-
- Mar 15, 2011
-
-
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).
-