aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA.pnproj
Commit message (Collapse)AuthorAgeFilesLines
* Oops - fix path case in the Webserver project makefile, to fix *nix builds.Dean Camera2010-01-281-1/+1
|
* Add FatFS library to the Webserver project, extend the HTTP server so that ↵Dean Camera2010-01-281-1/+1
| | | | it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC.
* Add DHCP server to the Webserver demo for automatic network configuration. ↵Dean Camera2010-01-271-1/+1
| | | | Correct uIP timer clock not tracking the correct timespan.
* Exclude host application directories from the Doxygen input source file ↵Dean Camera2010-01-251-1/+1
| | | | directories.
* Move TWI.c driver into the straight LUFA/Drivers/Peripheral/ directory.Dean Camera2010-01-251-1/+1
| | | | Fix TemperatureDataLogger and Webserver project builds.
* Add Webserver project Doxygen configuration file and overview document.Dean Camera2010-01-251-1/+1
| | | | Fix Doxygen configuration files' input file exclusion filters.
* ADC2 and ADC3 channels do not exist on the U4 series USB AVRs.Dean Camera2010-01-251-1/+1
|
* Enhance TemperatureDatalogger project -- add RTC capabilities so that data ↵Dean Camera2010-01-241-1/+1
| | | | is logged along with the current time and date. Make logging interval configurable, set by a C# PC host application.
* Fix up the incomplete Webserver project so that it integrates with the uIP ↵Dean Camera2010-01-211-1/+1
| | | | | | stack correctly. Add simple HTTP webserver as a placeholder until FatFS can be integrated. Begin to look into the RNDIS Host Class Driver, which seems to crash on test hardware after many packets have been received.
* Clean up of the altered XPLAINBridge project.Dean Camera2010-01-191-1/+1
|
* Changed XPLAINBridge project to be both a USB to USART bridge and a PDI ↵Dean Camera2010-01-191-1/+1
| | | | programmer, based on the state of a mode select pin.
* Added master mode hardware TWI driver.Dean Camera2010-01-191-1/+1
| | | | Fixed a bug in the incomplete Webserver project, where the packet data was not being written to and read from the correct buffer address.
* Started Webserver RNDIS host project.Dean Camera2010-01-121-1/+1
|
* Add new TemperatureDataLogger project, a simple USB Mass Storage class ↵Dean Camera2009-12-301-1/+1
| | | | Temperature Data Logger using the onboard Dataflash and Temperature sensor.
* Fix references to the renamed AVRISP-MKII project folder.Dean Camera2009-12-271-1/+1
|
* Complete combining of PDI and TPI target communication code files, stub out ↵Dean Camera2009-12-241-1/+1
| | | | TINY NVM controller functions.
* Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI ↵Dean Camera2009-12-241-1/+1
| | | | and PDI programming.
* Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵Dean Camera2009-12-241-1/+1
| | | | same underlying XPROG wrapper for the host-to-programmer command wrapping.
* Correct include paths and makefile for the AVRISP project now that the ↵Dean Camera2009-12-231-1/+1
| | | | protocol handlers are in seperate directories.
* Stub out more of the TPI programming protocol routines in the AVRISP project.Dean Camera2009-12-231-1/+1
|
* Seperate out XMEGA and TINY NVM routines into seperate files.Dean Camera2009-12-231-1/+1
|
* Start of implementation of the low level TPI programming protocol in the ↵Dean Camera2009-12-231-1/+1
| | | | AVRISP project.
* Add const qualifier to the parameters of Projects' functions where possible.Dean Camera2009-12-201-1/+1
|
* Add LEDNotifier project to the Projects folder build list. Add new LEDMixer ↵Dean Camera2009-12-181-1/+1
| | | | C# host application for the LEDNotifier project.
* Fix up references in the LEDNotifier project to the old HotmailNotifier name.Dean Camera2009-12-181-1/+1
|
* Rename HotmailNotifier project files to LEDNotifier.Dean Camera2009-12-181-1/+1
|
* Renamed HotmailNotifier project to LEDNotifier.Dean Camera2009-12-181-1/+1
|
* Enhance the HotmailNotifier project so that the LEDs' individual brightness ↵Dean Camera2009-12-181-1/+1
| | | | can be controlled individually via software PWM.
* Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project.Dean Camera2009-12-171-1/+1
| | | | Add new HotmailNotifier project, which changes a LED's colour based on the user's unread email count as sent from Windows Live Messenger.
* Split out NVM access code in the AVRISP project into a seperate NVMTarget.c ↵Dean Camera2009-12-141-1/+1
| | | | source file and header. Make NVM register accesses use the NVM base address as set by the host, rather than using the fixed value from the XMEGA datasheet.
* The AVRISP project can now enter PDI mode under both bit-bang and hardware ↵Dean Camera2009-12-131-1/+1
| | | | USART connection modes, tested against the XPLAIN board hardware. Still need to complete higher level NVM access code so that the device's memories can be read and written.
* Additional file renames and modifications to change CDC demos to VirtualSerial.Dean Camera2009-12-071-1/+1
|
* Added support for the Atmel EVK527 board hardware.Dean Camera2009-12-041-1/+1
|
* Added support for the Dataflash mounted on the XPLAIN board. Added new ↵Dean Camera2009-12-031-1/+1
| | | | XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
* Started implementing the low level PDI protocol in the AVRISP project, for ↵Dean Camera2009-12-031-1/+1
| | | | XMEGA device programming.
* Add new more reliable software UART for the XPLAINBridge project by David ↵Dean Camera2009-12-021-1/+1
| | | | Prentice and Peter Danneger.
* Removed John Steggall's software UART code from the XPLAIN Bridge project ↵Dean Camera2009-12-021-1/+1
| | | | due to reliability issues.
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-021-1/+1
| | | | AVRISP Programmer project.
* Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone ↵Dean Camera2009-12-021-1/+1
| | | | project.
* Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost ↵Dean Camera2009-11-261-1/+1
| | | | | | | | Class Driver demo. Fixed all Class drivers to ensure they have appropriate guards on each function to ensure the device is enumerated before running, fixed error codes on all guards to return "DeviceDisconnected" where possble. Renamed HOST_SENDCONTROL_DeviceDisconnect enum value to HOST_SENDCONTROL_DeviceDisconnected to be in line with the rest of the library enum error codes.
* Updated John Steggall's software USART in the XPLAINBridge project.Dean Camera2009-11-261-1/+1
|
* Fix build and Doxygen errors.Dean Camera2009-11-251-1/+1
|
* Added new RNDISHost Host LowLevel demo. Fixed misnamed Pipe_SetPipeToken() ↵Dean Camera2009-11-251-1/+1
| | | | macro for setting a pipe's direction. Fixed CDCHost failing on devices with bidirectional endpoints.
* Added new XPLAIN serial Bridge project (thanks to John Steggall for the ↵Dean Camera2009-11-251-1/+1
| | | | software UART code).
* The incomplete StandaloneProgrammer project now uses Host and Device Mass ↵Dean Camera2009-11-231-1/+1
| | | | | | | | | | | | storage classes, so that program data can either be loaded onto the device's Dataflash storage, or read off an attached USB memory stick. The USB target family and allowable USB mode tokens are now public and documented (USB_CAN_BE_*, USB_SERIES_*_AVR). The SCSI_Request_Sense_Response_t and SCSI_Inquiry_Response_t type defines are now part of the Mass Storage Class driver common defines, rather than being defined in the Host mode Class driver section only. The USB_MODE_HOST token is now defined even when host mode is not available. Added missing CDC_Host_CreateBlockingStream() function code to the CDC Host Class driver.
* Make RNDISHost demo validate the set Packet Filter to ensure that it is ↵Dean Camera2009-11-171-1/+1
| | | | | | being sent correctly. Add new (incomplete) StandaloneProgrammer project, using the ELM Petite FAT library to read files stored on the board's dataflash by the host.
* Add beginnings of a RNDIS Ethernet Host demo.Dean Camera2009-11-121-1/+1
|
* Added new Printer Host mode Class driver.Dean Camera2009-11-041-1/+1
| | | | | | Added new Printer Host mode ClassDriver demo. Added table of supported classes and modes to the main USB Class Driver documentation.
* Added new JoystickHostWithParser demos to the library.Dean Camera2009-11-041-1/+1
| | | | Add some missing documentation to some of the library demos.
* Add new CDCMouse ClassDriver device demo, combining a CDC Virtual Serial ↵Dean Camera2009-11-031-1/+1
| | | | Port and a HID Mouse.