pub/USBasp.git
16 years agoAdd extra tests to the MassStorage device demo and class driver for validating comman...
Dean Camera [Tue, 21 Jul 2009 04:46:48 +0000 (04:46 +0000)]
Add extra tests to the MassStorage device demo and class driver for validating command blocks from the host.

16 years agoAdd explicit guards to all device mode tasks to ensure the device is connected and...
Dean Camera [Tue, 21 Jul 2009 02:48:41 +0000 (02:48 +0000)]
Add explicit guards to all device mode tasks to ensure the device is connected and configured before running the task, to prevent any user tasks from locking up the main USB task if the device has not been properly configured.

16 years agoSimplify SideShow GUID compares via a macro.
Dean Camera [Mon, 20 Jul 2009 14:51:19 +0000 (14:51 +0000)]
Simplify SideShow GUID compares via a macro.

16 years agoFixes to unfinished SideShow demo to re-enable correct building after previous commit.
Dean Camera [Mon, 20 Jul 2009 14:27:14 +0000 (14:27 +0000)]
Fixes to unfinished SideShow demo to re-enable correct building after previous commit.

16 years agoMove unfinished SideShow source files to nested Lib directory for clarity.
Dean Camera [Mon, 20 Jul 2009 14:23:47 +0000 (14:23 +0000)]
Move unfinished SideShow source files to nested Lib directory for clarity.

16 years agoEnsure control pipe is selected in the PrinterHost demo before trying to send control...
Dean Camera [Mon, 20 Jul 2009 14:12:05 +0000 (14:12 +0000)]
Ensure control pipe is selected in the PrinterHost demo before trying to send control requests.

16 years agoChange Doxygen configuration files to not produce 4096 directories for the documentat...
Dean Camera [Mon, 20 Jul 2009 14:07:02 +0000 (14:07 +0000)]
Change Doxygen configuration files to not produce 4096 directories for the documentation files -- the LUFA components do not generate enough documentation files to justify the large performance hit of creating so many directories.

Fix missing Doxygen documentation in the Class Driver Mass Storage Device demo.

16 years agoAdded missing DoxyGen configuration file to the PrinterHost demo.
Dean Camera [Mon, 20 Jul 2009 13:52:45 +0000 (13:52 +0000)]
Added missing DoxyGen configuration file to the PrinterHost demo.

16 years agoAdded extra DoxyGen documentation to the new PrinterHost demo.
Dean Camera [Mon, 20 Jul 2009 13:49:26 +0000 (13:49 +0000)]
Added extra DoxyGen documentation to the new PrinterHost demo.

16 years agoAdd PrinterHost to the project file and Host LowLevel directory makefile.
Dean Camera [Mon, 20 Jul 2009 13:41:37 +0000 (13:41 +0000)]
Add PrinterHost to the project file and Host LowLevel directory makefile.

16 years agoMoved PrinterHost demo from Incomplete to LowLevel, as it is now near-complete.
Dean Camera [Mon, 20 Jul 2009 13:37:20 +0000 (13:37 +0000)]
Moved PrinterHost demo from Incomplete to LowLevel, as it is now near-complete.

16 years agoFixed PrinterHost demo Printer_GetDeviceID() routine not removing the Device ID strin...
Dean Camera [Mon, 20 Jul 2009 10:19:13 +0000 (10:19 +0000)]
Fixed PrinterHost demo Printer_GetDeviceID() routine not removing the Device ID string length from the start of the returned array (thanks to John Andrews).

Fixed error in new pipe stream function template system not setting the right device token for R/W operations (also thanks to John Andrews).

16 years agoRemove ClearPipeStall routine from the StillImageHost demo, as there is now a version...
Dean Camera [Mon, 20 Jul 2009 03:14:41 +0000 (03:14 +0000)]
Remove ClearPipeStall routine from the StillImageHost demo, as there is now a version of the function built into the library itself.

16 years agoCleaner solution to the PrinterHost data send routine problem of embedded NULLs ...
Dean Camera [Mon, 20 Jul 2009 03:07:27 +0000 (03:07 +0000)]
Cleaner solution to the PrinterHost data send routine problem of embedded NULLs - use a special structure to hold the data string plus the length in bytes of the data.

16 years agoFix unfinished printer host demo - some printer languages use embedded NULLs and...
Dean Camera [Mon, 20 Jul 2009 02:59:16 +0000 (02:59 +0000)]
Fix unfinished printer host demo - some printer languages use embedded NULLs and so strlen() won't work in all cases. Ensure NULL terminator for the test page is not transmitted to the device.

16 years agoAdded error codes to most StillImageHost demo commands.
Dean Camera [Mon, 20 Jul 2009 02:27:32 +0000 (02:27 +0000)]
Added error codes to most StillImageHost demo commands.

16 years agoDon't send terminal RESET codes via serial - just set the foreground colour and assum...
Dean Camera [Sun, 19 Jul 2009 13:17:38 +0000 (13:17 +0000)]
Don't send terminal RESET codes via serial - just set the foreground colour and assume the user has the background set to something sane, so that the demos don't wipe out custom user terminal settings.

16 years agoUse sane ANSI terminal escape codes for the Host mode demos, so that they do not...
Dean Camera [Sun, 19 Jul 2009 13:08:48 +0000 (13:08 +0000)]
Use sane ANSI terminal escape codes for the Host mode demos, so that they do not cause eye-searing, unreadable text on terminals which parse the escape codes properly.

16 years agoAdd partial project documentation to the incomplete PrinterHost demo.
Dean Camera [Sun, 19 Jul 2009 12:36:19 +0000 (12:36 +0000)]
Add partial project documentation to the incomplete PrinterHost demo.

Change over Printer_GetDeviceID() to require a pointer to the destination buffer plus the buffer size, rather than using a pointer to a special structure.

Make new Printer_SendData() function to hide the implementation of sending data to an attached printer, cleaning up the main demo source file body.

16 years agoFix PrinterHost demo so that it will only enumerate printers with Bidirectional proto...
Dean Camera [Sun, 19 Jul 2009 09:36:16 +0000 (09:36 +0000)]
Fix PrinterHost demo so that it will only enumerate printers with Bidirectional protocol encapsulation. Change enumeration code to automatically select the correct alternate setting for the printer interface to select the bidirectional protocol.

16 years agoFixed incorrect PIPE_EPNUM_MASK mask causing pipe failures on devices with endpoint...
Dean Camera [Sun, 19 Jul 2009 09:04:25 +0000 (09:04 +0000)]
Fixed incorrect PIPE_EPNUM_MASK mask causing pipe failures on devices with endpoint addresses of 8 and above (thanks to John Andrews).

16 years agoMagstripe Project: Ensure that empty tracks still print out a newline seperator so...
Dean Camera [Sun, 19 Jul 2009 07:30:37 +0000 (07:30 +0000)]
Magstripe Project: Ensure that empty tracks still print out a newline seperator so that the host always knows what track data is being sent.

Updates to PrinterHost demo to include some PCL test data plus fixes to the GetDeviceID routine.

16 years agoMinor updates to the Magstripe and MissileLauncher projects to fix bugs and improve...
Dean Camera [Thu, 16 Jul 2009 15:00:10 +0000 (15:00 +0000)]
Minor updates to the Magstripe and MissileLauncher projects to fix bugs and improve performance.

Fixed error in GenericHID descriptors preventing it from passing the USB-IF HID tests (thanks to Søren Greiner).

16 years agoAdded support for the new ATMEGA32U2, ATMEGA16U2 and ATMEGA8U2 AVR models.
Dean Camera [Thu, 16 Jul 2009 08:57:51 +0000 (08:57 +0000)]
Added support for the new ATMEGA32U2, ATMEGA16U2 and ATMEGA8U2 AVR models.

16 years agoFix small error in last commit preventing compilation in some circumstances.
Dean Camera [Thu, 16 Jul 2009 08:32:20 +0000 (08:32 +0000)]
Fix small error in last commit preventing compilation in some circumstances.

16 years agoAdded new TOTAL_NUM_CONFIGURATIONS option, removed USE_SINGLE_DEVICE_CONFIGURATION...
Dean Camera [Thu, 16 Jul 2009 08:15:27 +0000 (08:15 +0000)]
Added new TOTAL_NUM_CONFIGURATIONS option, removed USE_SINGLE_DEVICE_CONFIGURATION compile time option (but silently convert it to USE_SINGLE_DEVICE_CONFIGURATION internally for compatibility).

Added new USE_FLASH_DESCRIPTORS compile time option. By default, descriptors can now lie in mixed memory spaces (specified by a new parameter to the CALLBACK_USB_GetDescriptor() function) unless one of the USE_*_DESCRIPTORS compile time option is specified.

16 years agoFix HID class device driver -- if a SetIDle request is issued with the LSB of wValue...
Dean Camera [Wed, 15 Jul 2009 05:49:19 +0000 (05:49 +0000)]
Fix HID class device driver -- if a SetIDle request is issued with the LSB of wValue set to zero, the idle period must be set for all HID interfaces.

Fix Keyboard and Mouse demos, Idle period is now multiplied by 4 as the period is read into and sent out of the device to ensure it is always stored as a multiple of 1ms. Fixes Keyboard demo using an initial Idle period of 2s rather than 500ms (thanks to Brian Dickman).

Move out the internal device serial descriptor reading routine into a seperate static function, rather than being part of USB_Device_GetDescriptor.

16 years agoAdded module file dependancy information to the USB class drivers.
Dean Camera [Tue, 14 Jul 2009 07:59:34 +0000 (07:59 +0000)]
Added module file dependancy information to the USB class drivers.

16 years agoAdded better module summaries.
Dean Camera [Tue, 14 Jul 2009 07:33:06 +0000 (07:33 +0000)]
Added better module summaries.

16 years agoFix broken Pipe stream function templates due to mixed const/no const use in prototypes.
Dean Camera [Mon, 13 Jul 2009 12:44:47 +0000 (12:44 +0000)]
Fix broken Pipe stream function templates due to mixed const/no const use in prototypes.

16 years agoAdded new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream functions...
Dean Camera [Mon, 13 Jul 2009 12:38:30 +0000 (12:38 +0000)]
Added new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream functions. Changed Endpoint.c and Pipe.c to use a templated system to build the seperate functions, rather than duplicating each function's code many times.

16 years agoAdded compatibility list to the documentation of each individual demo.
Dean Camera [Mon, 13 Jul 2009 06:44:14 +0000 (06:44 +0000)]
Added compatibility list to the documentation of each individual demo.

Documented FAST_STREAM_TRANSFERS compile time option.

Reduced the TCP window size for the RNDIS demos (Class and LowLevel) to make them compatible with the AT90USB64x.

16 years agoAdded new HOST_STATE_WaitForDeviceRemoval host state machine state for non-blocking...
Dean Camera [Mon, 13 Jul 2009 05:34:43 +0000 (05:34 +0000)]
Added new HOST_STATE_WaitForDeviceRemoval host state machine state for non-blocking disabling of device communications until the device has been removed (for use when an error occurs or communications with the device have completed). Changed over all host mode demos to use the new state.

Added verbose documentation for each of the USB Host state machine states.

16 years agoSeperated out parts of the PrinterHost incomplete demo into a seperate Lib subdirectory.
Dean Camera [Mon, 13 Jul 2009 04:46:52 +0000 (04:46 +0000)]
Seperated out parts of the PrinterHost incomplete demo into a seperate Lib subdirectory.

Fixed Host mode to Device mode UID change not causing a USB Disconnect event when a device was connected.

16 years agoFixed compilation error in incomplete BluetoothHost demo.
Dean Camera [Sat, 11 Jul 2009 15:07:07 +0000 (15:07 +0000)]
Fixed compilation error in incomplete BluetoothHost demo.

16 years agoAdded incomplete PrinterHost demo application.
Dean Camera [Sat, 11 Jul 2009 15:05:56 +0000 (15:05 +0000)]
Added incomplete PrinterHost demo application.

Seperated out Lib components of the incomplete BluetoothHost demo application out into a seperate Lib subfolder.

Changed F_CLOCK entries in project makefiles to alias to F_CPU by default, as this is the most common case.

16 years agoMinor correction to MagStripe demo to fix build problems.
Dean Camera [Mon, 29 Jun 2009 11:11:51 +0000 (11:11 +0000)]
Minor correction to MagStripe demo to fix build problems.

16 years agoDataflash_WaitWhileBusy() now always ensures that the dataflash is ready for the...
Dean Camera [Mon, 29 Jun 2009 09:30:06 +0000 (09:30 +0000)]
Dataflash_WaitWhileBusy() now always ensures that the dataflash is ready for the next command immediately after returning, no need to call Dataflash_ToggleSelectedChipCS() afterwards.

Added new DATAFLASH_CHIP_MASK() macro to the Dataflash driver, which returns the Dataflash select mask for the given chip index.

Updated MassStorage device block write routines to use ping-pong Dataflash buffering to increase throughput by around 30%.

16 years agoAdded const modifiers to device mode class drivers.
Dean Camera [Sun, 28 Jun 2009 13:39:08 +0000 (13:39 +0000)]
Added const modifiers to device mode class drivers.

Added parameter directions to function parameter documentation.

Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).

16 years agoReduce struct name pollution - group typedef struct names by class driver name where...
Dean Camera [Fri, 26 Jun 2009 11:43:56 +0000 (11:43 +0000)]
Reduce struct name pollution - group typedef struct names by class driver name where appropriate.

16 years agoRename some of the library documentation files.
Dean Camera [Fri, 26 Jun 2009 10:25:59 +0000 (10:25 +0000)]
Rename some of the library documentation files.

16 years agoSplit Getting Started page of the documentation into its own section.
Dean Camera [Fri, 26 Jun 2009 10:24:54 +0000 (10:24 +0000)]
Split Getting Started page of the documentation into its own section.

16 years agoOptimize vendor/product description string display code in MassStorageHost.
Dean Camera [Fri, 26 Jun 2009 09:58:43 +0000 (09:58 +0000)]
Optimize vendor/product description string display code in MassStorageHost.

Remove all Host mode class demos other than the CDCHost class driver demo, so that they can be re-added as they are made once the host mode class framework is designed.

Fixed USB_Host_SendControlRequest() not re-suspending the USB bus when initial device ready-wait fails.

Fixed USB Pad regulator not being disabled on some AVR models when the USB_OPT_REG_DISABLED option is used.

16 years agoOops - SCSI INQUIRY data uses fixed-length, non-terminated strings -- need to copy...
Dean Camera [Tue, 23 Jun 2009 09:38:22 +0000 (09:38 +0000)]
Oops - SCSI INQUIRY data uses fixed-length, non-terminated strings -- need to copy the strings to a temp buffer and terminate before using them in printf.

16 years agoMassStorageHost demo now retrieves Inquiry data from the device during enumeration...
Dean Camera [Tue, 23 Jun 2009 09:01:23 +0000 (09:01 +0000)]
MassStorageHost demo now retrieves Inquiry data from the device during enumeration, and prints the device's Vendor and Product IDs.

16 years agoFixed MassStorage demo not clearing the reset flag when a Mass Storage Reset is issue...
Dean Camera [Tue, 23 Jun 2009 08:45:46 +0000 (08:45 +0000)]
Fixed MassStorage demo not clearing the reset flag when a Mass Storage Reset is issued while not processing a command.

16 years agoPipe_ConfigurePipe() now automatically defaults IN pipes to accepting infinite IN...
Dean Camera [Tue, 23 Jun 2009 08:03:09 +0000 (08:03 +0000)]
Pipe_ConfigurePipe() now automatically defaults IN pipes to accepting infinite IN requests, this can still be changed by calling the existing \ref Pipe_SetFiniteINRequests() function.

16 years agoFixed CDCHost demo unfreezing IN pipes during configuration, rather than during use.
Dean Camera [Tue, 23 Jun 2009 07:55:18 +0000 (07:55 +0000)]
Fixed CDCHost demo unfreezing IN pipes during configuration, rather than during use.

Changed Pipe stream functions to automatically set the pipe token, allowing them to be used on bidirectional pipes without having to explicitly call Pipe_SetPipeToken() beforehand.

16 years agoAdd demos/bootloaders/projects overview to the manual.
Dean Camera [Mon, 22 Jun 2009 11:32:51 +0000 (11:32 +0000)]
Add demos/bootloaders/projects overview to the manual.

16 years agoCorrected the ADC driver for the ATMEGA16U4 and ATMEGA32U4 (thanks to Opendous Inc.).
Dean Camera [Mon, 22 Jun 2009 10:23:47 +0000 (10:23 +0000)]
Corrected the ADC driver for the ATMEGA16U4 and ATMEGA32U4 (thanks to Opendous Inc.).

16 years agoOptimize unique serial number reading code for size -- remove atoi/toupper references...
Dean Camera [Sun, 21 Jun 2009 13:52:21 +0000 (13:52 +0000)]
Optimize unique serial number reading code for size -- remove atoi/toupper references, replace with hand-rolled code as the input has known size constraints.

16 years agoAdd NO_INTERNAL_SERIAL compile time option to bootloaders to prevent them from having...
Dean Camera [Sun, 21 Jun 2009 11:09:12 +0000 (11:09 +0000)]
Add NO_INTERNAL_SERIAL compile time option to bootloaders to prevent them from having unneccesary size increases from unused code.

16 years agoAdded new USE_INTERNAL_SERIAL define for using the unique serial numbers in some...
Dean Camera [Sun, 21 Jun 2009 09:22:31 +0000 (09:22 +0000)]
Added new USE_INTERNAL_SERIAL define for using the unique serial numbers in some AVR models as the USB device's serial number, added NO_INTERNAL_SERIAL compile time option to turn off new serial number reading code. Updated Mass Storage and CDC based demos to use the new device serial number if the device it is compiled for supports it.

16 years agoTrim unique serial number created by the USE_INTERNAL_SERIAL option to 12 characters...
Dean Camera [Sun, 21 Jun 2009 08:04:10 +0000 (08:04 +0000)]
Trim unique serial number created by the USE_INTERNAL_SERIAL option to 12 characters rather than 20 - apparently Windows will implode if a serial number is too long.

16 years agoRe-add signature byte defines to the DFU and CDC class bootloaders -- the SIGNATURE_x...
Dean Camera [Sun, 21 Jun 2009 05:04:18 +0000 (05:04 +0000)]
Re-add signature byte defines to the DFU and CDC class bootloaders -- the SIGNATURE_x defines in the AVR device header files only exist in a newer version of avr-libc than is in the Debian repositories, causing build issues on Linux.

16 years agoAdd new temp LUFA project logo to the manual.
Dean Camera [Sun, 21 Jun 2009 04:48:05 +0000 (04:48 +0000)]
Add new temp LUFA project logo to the manual.

16 years agoAdded USE_INTERNAL_SERIAL compile time option to automatically read out the internal...
Dean Camera [Sat, 20 Jun 2009 11:43:26 +0000 (11:43 +0000)]
Added USE_INTERNAL_SERIAL compile time option to automatically read out the internal unique serial number as the device's serial number descriptor on supported AVR models.

16 years agoClean up RNDIS demo type define names.
Dean Camera [Fri, 19 Jun 2009 07:29:02 +0000 (07:29 +0000)]
Clean up RNDIS demo type define names.

16 years agoFix makefiles -- the auto-addition of -D switches to each LUFA compile time option...
Dean Camera [Fri, 19 Jun 2009 05:08:04 +0000 (05:08 +0000)]
Fix makefiles -- the auto-addition of -D switches to each LUFA compile time option was faulty, due to GNUMake becomming confused by the spaces in the USE_STATIC_OPTIONS lines. Make user add in the switches explicitly instead.

16 years agoMove LUFA compile time options to a new section in the application makefiles for...
Dean Camera [Fri, 19 Jun 2009 04:34:35 +0000 (04:34 +0000)]
Move LUFA compile time options to a new section in the application makefiles for clarity.

16 years agoExtend USB_GetDeviceConfigDescriptor() routine to require the configuration number...
Dean Camera [Fri, 19 Jun 2009 03:37:47 +0000 (03:37 +0000)]
Extend USB_GetDeviceConfigDescriptor() routine to require the configuration number within the device to fetch, to add support for multi-configuration devices.

16 years agoRe-add in simple scheduler for compatibility with legacy code, mark all scheduler...
Dean Camera [Fri, 19 Jun 2009 03:21:03 +0000 (03:21 +0000)]
Re-add in simple scheduler for compatibility with legacy code, mark all scheduler related files as deprecated.

16 years agoFix broken MagStripe project.
Dean Camera [Thu, 18 Jun 2009 10:55:04 +0000 (10:55 +0000)]
Fix broken MagStripe project.

16 years agoOops - restore deleted MissileLauncher project, fix all spelling errors for "missile...
Dean Camera [Thu, 18 Jun 2009 10:49:19 +0000 (10:49 +0000)]
Oops - restore deleted MissileLauncher project, fix all spelling errors for "missile". TODO: Learn how to actually spell.

16 years agoFix spelling of the MissileLauncher project directory.
Dean Camera [Thu, 18 Jun 2009 10:36:02 +0000 (10:36 +0000)]
Fix spelling of the MissileLauncher project directory.

16 years agoBreak device mode class driver interfaces into seperate config and state structs...
Dean Camera [Thu, 18 Jun 2009 10:31:55 +0000 (10:31 +0000)]
Break device mode class driver interfaces into seperate config and state structs which are then combined, for clarity. Move device mode class driver interfaces back into the device mode class driver headers from the common class headers to make room for host class interfaces.

16 years agoAdded new USB_Host_ClearPipeStall() convenience function to clear a stall condition...
Dean Camera [Thu, 18 Jun 2009 07:53:51 +0000 (07:53 +0000)]
Added new USB_Host_ClearPipeStall() convenience function to clear a stall condition on an attached device's endpoint.

Added new USB_Host_GetDeviceDescriptor() convenience function to retrieve the attached device's Device descriptor.

Make Pipe_ConfigurePipe() mask the given endpoint number against PIPE_EPNUM_MASK to ensure the endpoint IN direction bit is cleared to prevent endpoint type corruption.

Fix documentation mentioning Pipe_GetCurrentToken() function when real name is Pipe_GetPipeToken().

16 years agoRemove hardcoded DOT path from all Doxygen config files.
Dean Camera [Tue, 16 Jun 2009 13:50:02 +0000 (13:50 +0000)]
Remove hardcoded DOT path from all Doxygen config files.

Better documentation for the MissleLauncher project - add credit to PyLauncher project.

16 years agoAdd MissleLauncher project to the /Projects/ makefile. Add missing MissleLauncher...
Dean Camera [Tue, 16 Jun 2009 07:25:47 +0000 (07:25 +0000)]
Add MissleLauncher project to the /Projects/ makefile. Add missing MissleLauncher Doxygen.conf file.

16 years agoPipe_GetErrorFlags() now returns additional error flags for overflow and underflow...
Dean Camera [Tue, 16 Jun 2009 07:17:22 +0000 (07:17 +0000)]
Pipe_GetErrorFlags() now returns additional error flags for overflow and underflow errors.

Change MIDI demos to use real MIDI command values, and shift for the USB wrapper, rather than shift for the MIDI bytes. This is a little confusing for the MIDI USB wrapper, but allows for the use of real standardized MIDI command values.

16 years agoAdded USB Missle Launcher project, submitted by Dave Fletcher.
Dean Camera [Tue, 16 Jun 2009 05:53:27 +0000 (05:53 +0000)]
Added USB Missle Launcher project, submitted by Dave Fletcher.

16 years agoAdded new USB_Host_SetDeviceConfiguration() convenience function. Change over Low...
Dean Camera [Tue, 16 Jun 2009 04:20:21 +0000 (04:20 +0000)]
Added new USB_Host_SetDeviceConfiguration() convenience function. Change over Low Level host demos to use the new routine.

16 years agoMove main library documentation pages into a new ManPages subdirectory.
Dean Camera [Mon, 15 Jun 2009 13:57:57 +0000 (13:57 +0000)]
Move main library documentation pages into a new ManPages subdirectory.

16 years agoRemove ConfigDescriptor.c/.h files from the ClassDriver Host demos, as they will...
Dean Camera [Mon, 15 Jun 2009 13:42:34 +0000 (13:42 +0000)]
Remove ConfigDescriptor.c/.h files from the ClassDriver Host demos, as they will be obsoleted when the Host mode class drivers are complete. Add new StillImage stub class driver common header.

16 years agoAdd author image to library documentation.
Dean Camera [Mon, 15 Jun 2009 11:12:39 +0000 (11:12 +0000)]
Add author image to library documentation.

16 years agoUse sub pages in main library documentation to improve readability.
Dean Camera [Mon, 15 Jun 2009 11:01:58 +0000 (11:01 +0000)]
Use sub pages in main library documentation to improve readability.

16 years agoFixed broken HIDReportParser.c.
Dean Camera [Mon, 15 Jun 2009 08:58:55 +0000 (08:58 +0000)]
Fixed broken HIDReportParser.c.

16 years agoMore Doxygen fixes - ensure no undocumented function parameters.
Dean Camera [Mon, 15 Jun 2009 08:36:12 +0000 (08:36 +0000)]
More Doxygen fixes - ensure no undocumented function parameters.

16 years agoDoxygen corrections to fix Doxygen warnings in some demos.
Dean Camera [Mon, 15 Jun 2009 07:23:14 +0000 (07:23 +0000)]
Doxygen corrections to fix Doxygen warnings in some demos.

16 years agoEnhanced class drivers to use the same public/private section seperations as other...
Dean Camera [Mon, 15 Jun 2009 04:38:42 +0000 (04:38 +0000)]
Enhanced class drivers to use the same public/private section seperations as other portions of the library.

16 years agoAdd host mode USB Class driver stubs, add beginnings of a CDC host class driver.
Dean Camera [Sun, 14 Jun 2009 15:55:13 +0000 (15:55 +0000)]
Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.

Split out common defines/types from class drivers into a seperate common class driver directory.

Make central USB Class driver dispatch headers, used for both device and host modes.

16 years agoFix errors from last commit.
Dean Camera [Sun, 14 Jun 2009 07:57:04 +0000 (07:57 +0000)]
Fix errors from last commit.

16 years agoChanged per-device controller preprocessor checks over to per-device series for bette...
Dean Camera [Sun, 14 Jun 2009 07:44:02 +0000 (07:44 +0000)]
Changed per-device controller preprocessor checks over to per-device series for better device control.

Fixed error in Endpoint.c using HSOFI rather than SOFI for counting elapsed milliseconds.

16 years agoChanged to new device mode Class Driver function name prefixes to make way for simila...
Dean Camera [Thu, 11 Jun 2009 06:15:45 +0000 (06:15 +0000)]
Changed to new device mode Class Driver function name prefixes to make way for similar host mode Class drivers.

16 years agoSome minor whitespace corrections.
Dean Camera [Thu, 11 Jun 2009 01:52:53 +0000 (01:52 +0000)]
Some minor whitespace corrections.

16 years agoMove temp Todo list from the Changelog to a new Future Changes page in the documentation.
Dean Camera [Wed, 10 Jun 2009 07:20:08 +0000 (07:20 +0000)]
Move temp Todo list from the Changelog to a new Future Changes page in the documentation.

16 years agoFixes to the MIDI device demos (ClassDriver, LowLevel); discard unused read-in events...
Dean Camera [Wed, 10 Jun 2009 05:03:45 +0000 (05:03 +0000)]
Fixes to the MIDI device demos (ClassDriver, LowLevel); discard unused read-in events from the host, use standard MIDI event structure in low level demo rather than sending individual bytes.

16 years agoUpdated bootloaders to use the new main() function layout and remove any references...
Dean Camera [Tue, 9 Jun 2009 06:05:01 +0000 (06:05 +0000)]
Updated bootloaders to use the new main() function layout and remove any references to the scheduler to keep them in line with the rest of the library.

16 years agoCopy over schedulerless host demos to ClassDrivers directory, for later modification...
Dean Camera [Tue, 9 Jun 2009 04:30:12 +0000 (04:30 +0000)]
Copy over schedulerless host demos to ClassDrivers directory, for later modification to new Host mode USB class drivers.

16 years agoDeleted Host ClassDriver demos -- not yet started, faster to rebase new ClassDriver...
Dean Camera [Tue, 9 Jun 2009 04:27:53 +0000 (04:27 +0000)]
Deleted Host ClassDriver demos -- not yet started, faster to rebase new ClassDriver demos from the newly schedulerless LowLevel host demos rather than re-convert each demo from the previous scheduler-based implementations.

Fixes to MassStorageHost demo to improve compatibility with more USB drives.

16 years agoFinished basic documentation of all device mode class drivers.
Dean Camera [Mon, 8 Jun 2009 11:31:41 +0000 (11:31 +0000)]
Finished basic documentation of all device mode class drivers.

16 years agoCompleted documentation of the HID device class driver.
Dean Camera [Mon, 8 Jun 2009 10:35:42 +0000 (10:35 +0000)]
Completed documentation of the HID device class driver.

16 years agoFinished CDC device class driver documentation.
Dean Camera [Mon, 8 Jun 2009 10:06:49 +0000 (10:06 +0000)]
Finished CDC device class driver documentation.

16 years agoError status LEDs shown when device endpoint configuration fails to complete.
Dean Camera [Mon, 8 Jun 2009 07:46:07 +0000 (07:46 +0000)]
Error status LEDs shown when device endpoint configuration fails to complete.

MIDI device demo no longer blocks if a note change event is sent while the endpoint is not ready.

16 years agoConverted Host mode demos to schedulerless. Fixed host mode broken due to earlier...
Dean Camera [Mon, 8 Jun 2009 07:34:16 +0000 (07:34 +0000)]
Converted Host mode demos to schedulerless. Fixed host mode broken due to earlier Start-of-frame event experiments.

16 years agoConverted device mode low-level demos to schedulerless.
Dean Camera [Sun, 7 Jun 2009 07:20:33 +0000 (07:20 +0000)]
Converted device mode low-level demos to schedulerless.

16 years agoAdd master device Host demo makefile.
Dean Camera [Fri, 5 Jun 2009 08:13:19 +0000 (08:13 +0000)]
Add master device Host demo makefile.

Copy and convert incomplete Bluetooth Host demo to the library.

16 years agoDelete host mode demos from the root Host demos folder.
Dean Camera [Fri, 5 Jun 2009 07:59:24 +0000 (07:59 +0000)]
Delete host mode demos from the root Host demos folder.

16 years agoCopy existing Host mode demos to new ClassDriver and LowLevel subfolders.
Dean Camera [Fri, 5 Jun 2009 07:56:39 +0000 (07:56 +0000)]
Copy existing Host mode demos to new ClassDriver and LowLevel subfolders.

16 years agoConversion of old incomplete SideShow demo to new APIs.
Dean Camera [Fri, 5 Jun 2009 07:52:53 +0000 (07:52 +0000)]
Conversion of old incomplete SideShow demo to new APIs.