Commit Graph

118 Commits (8301dc553ed9d4e2072001ed56553dba57db038c)

Author SHA1 Message Date
Dean Camera 8301dc553e Fix references to the renamed AVRISP-MKII project folder.
15 years ago
Dean Camera 65fcebf478 Complete combining of PDI and TPI target communication code files, stub out TINY NVM controller functions.
15 years ago
Dean Camera 05fcf7e2a7 Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI and PDI programming.
15 years ago
Dean Camera ce044844ea Combine AVRISP project TPI and PDI lib directories - these protocols use the same underlying XPROG wrapper for the host-to-programmer command wrapping.
15 years ago
Dean Camera 26bc1f3cfd Correct include paths and makefile for the AVRISP project now that the protocol handlers are in seperate directories.
15 years ago
Dean Camera bd5e8f07b7 Stub out more of the TPI programming protocol routines in the AVRISP project.
15 years ago
Dean Camera be71f934a4 Seperate out XMEGA and TINY NVM routines into seperate files.
15 years ago
Dean Camera cda88cf97c Start of implementation of the low level TPI programming protocol in the AVRISP project.
15 years ago
Dean Camera b408a5fe62 Add const qualifier to the parameters of Projects' functions where possible.
15 years ago
Dean Camera 901e26edd8 Add LEDNotifier project to the Projects folder build list. Add new LEDMixer C# host application for the LEDNotifier project.
15 years ago
Dean Camera 12abb59b19 Fix up references in the LEDNotifier project to the old HotmailNotifier name.
15 years ago
Dean Camera 47384e3c50 Rename HotmailNotifier project files to LEDNotifier.
15 years ago
Dean Camera 3b3ea167f0 Renamed HotmailNotifier project to LEDNotifier.
15 years ago
Dean Camera 3d6508c9b9 Enhance the HotmailNotifier project so that the LEDs' individual brightness can be controlled individually via software PWM.
15 years ago
Dean Camera c3758ac5ef Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project.
15 years ago
Dean Camera 1fa27139f5 Split out NVM access code in the AVRISP project into a seperate NVMTarget.c 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.
15 years ago
Dean Camera 307ba254d5 The AVRISP project can now enter PDI mode under both bit-bang and hardware 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.
15 years ago
Dean Camera cf22a744ec Additional file renames and modifications to change CDC demos to VirtualSerial.
15 years ago
Dean Camera 478d9dc04f Added support for the Atmel EVK527 board hardware.
15 years ago
Dean Camera bae00a3d42 Added support for the Dataflash mounted on the XPLAIN board. Added new XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
15 years ago
Dean Camera f69f03cb0d Started implementing the low level PDI protocol in the AVRISP project, for XMEGA device programming.
15 years ago
Dean Camera f92b56191d Add new more reliable software UART for the XPLAINBridge project by David Prentice and Peter Danneger.
15 years ago
Dean Camera fec31947a6 Removed John Steggall's software UART code from the XPLAIN Bridge project due to reliability issues.
15 years ago
Dean Camera 1f8dfd0205 Add support for unwrapping of the XMEGA PDI programming protocol to the AVRISP Programmer project.
15 years ago
Dean Camera 5930f47bf4 Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone project.
15 years ago
Dean Camera 5aa2b26261 Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost Class Driver demo.
15 years ago
Dean Camera f37d21bbe9 Updated John Steggall's software USART in the XPLAINBridge project.
15 years ago
Dean Camera 50f4a3b625 Fix build and Doxygen errors.
15 years ago
Dean Camera 8c6c27d88b Added new RNDISHost Host LowLevel demo. Fixed misnamed Pipe_SetPipeToken() macro for setting a pipe's direction. Fixed CDCHost failing on devices with bidirectional endpoints.
15 years ago
Dean Camera c05c7c7df4 Added new XPLAIN serial Bridge project (thanks to John Steggall for the software UART code).
15 years ago
Dean Camera aaa0bed556 The incomplete StandaloneProgrammer project now uses Host and Device Mass storage classes, so that program data can either be loaded onto the device's Dataflash storage, or read off an attached USB memory stick.
15 years ago
Dean Camera 9b20114555 Make RNDISHost demo validate the set Packet Filter to ensure that it is being sent correctly.
15 years ago
Dean Camera 6a46f0025a Add beginnings of a RNDIS Ethernet Host demo.
15 years ago
Dean Camera 8ba51f090f Added new Printer Host mode Class driver.
15 years ago
Dean Camera 87b2572ae5 Added new JoystickHostWithParser demos to the library.
15 years ago
Dean Camera 0899deaae3 Add new CDCMouse ClassDriver device demo, combining a CDC Virtual Serial Port and a HID Mouse.
15 years ago
Dean Camera 5832bab02f Rename the AT90USBXXX67 internal driver directory to AVRU4U6U7.
15 years ago
Dean Camera 870591983c Add const attribute to class driver APIs.
15 years ago
Dean Camera de70f0f1cf Moved USBtoSerial demo the Projects directory, as it is simply an expanded CDC demo. Added const qualifier to Endpoint/Pipe stream write routines.
15 years ago
Dean Camera dc68de15b6 Make Audio device demos compatible with AVRs running at 16MHz instead of 8MHz.
15 years ago
Dean Camera c7bc3ec391 Add new MIDI Host Class driver to the library, and new MIDIHost ClassDriver demo.
15 years ago
Dean Camera bdedbd558c Add new MIDIHost LowLevel demo application.
15 years ago
Dean Camera db435c4995 Minor documentation fixups.
15 years ago
Dean Camera 433399b05d Changed Audio Class driver sample read/write functions to be inline, to reduce the number of cycles needed to transfer samples to and from the device (allowing more time for processing and output).
15 years ago
Dean Camera 3ebfb998ec Added support for the Atmel XPLAIN board.
15 years ago
Dean Camera 89c837ee34 Removed mostly useless "TestApp" demo, as it was mainly useful only for checking for sytax errors in the library.
15 years ago
Dean Camera 7977663f62 Add information on the new MouseHostDevice dual role demo to the library documentation. Add a 0x prefix to the LUFA_VERSION_INTEGER define to ensure that it is stored as BCD, and not an octal value.
15 years ago
Dean Camera 3ffa7543a0 Finish initial draft of the Host Mode HID Class driver.
15 years ago
Dean Camera f5c645296c Added new MassStorageKeyboard Device Class Driver demo (thanks to Matthias Hullin).
15 years ago
Dean Camera 6c5c9212d8 Add KeyboardHost HID Host Class driver demo to the library.
15 years ago