aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/AudioInputHost
Commit message (Collapse)AuthorAgeFilesLines
* Add HID bootloader build module (thanks to Stefan Hellermann).Dean Camera2012-06-211-0/+1
|
* Add new ATPROGRAM build system module. Add ATPROGRAM and CPPCHECK modules to ↵Dean Camera2012-06-041-0/+2
| | | | all application makefiles.
* Switch over Demos, Bootloaders and Projects to the new and improved build ↵Dean Camera2012-06-011-722/+32
| | | | system.
* AppConfigHeaders: Merge in latest trunk.Dean Camera2012-05-271-1/+0
|\
| * Remove legacy AS4 project files, now that they can be automatically ↵Dean Camera2012-05-271-1/+0
| | | | | | | | generated by the new maintenance script.
* | Merge in latest trunk.Dean Camera2012-05-203-24/+18
|\|
| * Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet ↵Dean Camera2012-05-201-21/+15
| | | | | | | | and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.
| * Minor documentation adjustments to the demos, projects and bootloaders to ↵Dean Camera2012-05-181-2/+2
| | | | | | | | ensure correct formatting of application device support.
| * Update project Doxygen and makefiles so that the resulting project ↵Dean Camera2012-05-172-3/+3
| | | | | | | | documentation hides the unused version value, and uses the same HTML CSS stylesheet as the library core.
| * Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-141-2/+5
| |
* | AppConfigHeaders: Make sure that in applications using an AppConfig.h ↵Dean Camera2012-05-151-1/+0
| | | | | | | | configuration file, all application headers include the configuration file.
* | AppConfigHeaders: Switch class driver Host mode demos to use LUFAConfig.h ↵Dean Camera2012-05-132-3/+95
| | | | | | | | configuration header files.
* | Add branch for the conversion of demos to use standard C header files for ↵Dean Camera2012-05-101-2/+5
|/ | | | configuration, rather than makefile defined macros.
* Make Doxygen fail for any Doxygen output other than unsupported tags (as ↵Dean Camera2012-04-091-1/+1
| | | | | | these are somewhat benign). Improve exclusion list for the main library export_tar rule to exclude any compiled library files from the export.
* Only abort Doxygen documentation generation if a non-unsupported tag warning ↵Dean Camera2012-03-091-1/+1
| | | | is encountered.
* Update Doxygen documentation build scripts to fail if any warnings are ↵Dean Camera2012-03-091-1/+3
| | | | generated.
* Update Doxygen configuration files to disable Markdown support.Dean Camera2012-03-081-1/+1
|
* Update Doxygen configuration files for all projects.Dean Camera2012-03-071-107/+356
|
* Update file contributor copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Update file header copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-2/+2
| | | | trailing whitespace at the end of each line.
* Add missing SVN eol-style property to ensure that source code line endings ↵Dean Camera2011-11-091-1/+1
| | | | and converted to the native values on checkout.
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* Add missing device deconfiguration-on-error statements to the host mode ↵Dean Camera2011-07-081-0/+2
| | | | demos and projects.
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-75/+59
| | | | | | | | | | | | | | 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.
* Add new "checksource" target to the library makefiles, for automated source ↵Dean Camera2011-06-201-2/+10
| | | | file existance checking.
* Add missing SVN eol-style properties to source files to prevent mixed ↵Dean Camera2011-06-165-2670/+2670
| | | | end-of-line characters.
* Rename new Audio class driver functions, callbacks and events to ensure that ↵Dean Camera2011-06-161-3/+3
| | | | they contain the USB mode (Device or Host) in the function names.
* Ensure that only the requested Audio class pipes are mapped to endpoints ↵Dean Camera2011-06-131-1/+1
| | | | | | within the device for a specific Audio Host Class driver instance. Fix const-correctness of the Audio Host Class driver.
* Add missing AS4 and project description files to the new Audio Host demos.Dean Camera2011-06-092-0/+67
| | | | Correct errors in the existing Audio demo description files due to the new demo features (variable sampling rate vs. a fixed sampling rate).
* Add new Audio Class Driver Host demos.Dean Camera2011-06-094-0/+2604
Fix errors in the new Audio Host mode Class Driver, which would have prevented data from being sent or received properly by the device. Add microphone/square wave generation compile time switch to the Low Level AudioOutput Host demo.