Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Switch back to C based timeout ISR in the AVRISP project - assembly version ↵ | Dean Camera | 2010-05-02 | 1 | -1/+1 |
| | | | | was failing, and only one or two cycles could be shaved off the compiler generated code. | ||||
* | Change AVRISP project's timeout to be interrupt based again, but make the ↵ | Dean Camera | 2010-05-02 | 1 | -1/+1 |
| | | | | | | interrupt itself interruptable and use a seperate assembly file to hand-optimize the ISR code. Removed the cast to uint16_t on the set baud rate in the USBtoSerial project, so that the higher >1M baud rates can be selected (thanks to Steffan). | ||||
* | Relocate USBInterrupt.c/.h from the HighLevel USB driver directory to the ↵ | Dean Camera | 2010-04-28 | 1 | -1/+1 |
| | | | | LowLevel directory as it is hardware-dependent. | ||||
* | Remove incomplete/nonfunctional MIDI class bootloader. | Dean Camera | 2010-04-28 | 1 | -1/+1 |
| | |||||
* | Fix TeensyHID bootloader Doxygen configuration file's CREATE_SUBDIRS options ↵ | Dean Camera | 2010-04-27 | 1 | -1/+1 |
| | | | | set to true instead of false (thanks to Andrei Krainev). | ||||
* | Add const keyword to the demo function parameters where possible. | Dean Camera | 2010-04-18 | 1 | -1/+1 |
| | |||||
* | Add bluetooth channel connection callback to the incomplete BluetoothHost demo. | Dean Camera | 2010-04-18 | 1 | -1/+1 |
| | |||||
* | Rename FunctionAttributes.h to Attributes.h, as some attributes are ↵ | Dean Camera | 2010-04-15 | 1 | -1/+1 |
| | | | | | | | | applicable to variables also. Add new ATTR_NOINIT attribute for global variables. Add the beginnings of a SDP implentation to the incomplete BluetoothHost demo. Add const attribute to the Mass Storage Host driver functions where it was applicable, but missing. | ||||
* | Document the Bluetooth ACL layer. Remove unneeded parameters from the ↵ | Dean Camera | 2010-04-13 | 1 | -1/+1 |
| | | | | | | | | signalling command processing routines. Change over the code so that the bluetooth packet data is read in by the stack rather than the user application, to make it more unform for sending/receiving, and so the library can handle incomming fragmentation in the future. Start Service Discovery Protocol decoding and processing. | ||||
* | Oops, incorrectly edited the Benito buttons driver file instead of the ↵ | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | | | | | | JM-DB-U2 buttons driver file. Fix up preprocessor guards in the new board driver files. | ||||
* | Add missing board Buttons driver for the USBTINY MKII board target. | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | Oops - make sure board driver dispatch headers test for the correct BOARD ↵ | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | | | | | | define values. Add button support for the BENITO board target. | ||||
* | Added support for the JM-DB-U2 board hardware. | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | Added board hardware driver support for the Benito programmer. | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | Added board hardware driver support for Tom's USBTINY MKII programmer. | Dean Camera | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | Add briefs for the library core structures. | Dean Camera | 2010-03-29 | 1 | -1/+1 |
| | |||||
* | Add new LUFA logo by Ryo Yamauchi. | Dean Camera | 2010-03-25 | 1 | -1/+1 |
| | |||||
* | Added new Relay Controller Board project (thanks to OBinou). | Dean Camera | 2010-03-24 | 1 | -1/+1 |
| | | | | Added hardware board driver support for the PJRC Teensy line of USB AVR boards. | ||||
* | Added incomplete MIDIToneGenerator project. | Dean Camera | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | Revert changes made for the partial port to the AVR32 architecture. | Dean Camera | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Add start of an AVR32 SPI driver. | Dean Camera | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | Make SPI and USART peripheral dispatch driver headers in preparation for a ↵ | Dean Camera | 2010-02-22 | 1 | -1/+1 |
| | | | | set of AVR32 peripheral drivers. | ||||
* | Add uIP-split code to the Webserver project, so that each packet is split in ↵ | Dean Camera | 2010-02-18 | 1 | -1/+1 |
| | | | | half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory. | ||||
* | Add a TELNET server to the webserver project, which currently can list ↵ | Dean Camera | 2010-02-03 | 1 | -1/+1 |
| | | | | active TCP connections. | ||||
* | Replace the Webserver demo's uIP with the latest code ripped from the ↵ | Dean Camera | 2010-02-02 | 1 | -1/+1 |
| | | | | Contiki project by Adam Dunkels. | ||||
* | Oops - fix path case in the Webserver project makefile, to fix *nix builds. | Dean Camera | 2010-01-28 | 1 | -1/+1 |
| | |||||
* | Add FatFS library to the Webserver project, extend the HTTP server so that ↵ | Dean Camera | 2010-01-28 | 1 | -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 Camera | 2010-01-27 | 1 | -1/+1 |
| | | | | Correct uIP timer clock not tracking the correct timespan. | ||||
* | Exclude host application directories from the Doxygen input source file ↵ | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | | | | directories. | ||||
* | Move TWI.c driver into the straight LUFA/Drivers/Peripheral/ directory. | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | | | | Fix TemperatureDataLogger and Webserver project builds. | ||||
* | Add Webserver project Doxygen configuration file and overview document. | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | | | | Fix Doxygen configuration files' input file exclusion filters. | ||||
* | ADC2 and ADC3 channels do not exist on the U4 series USB AVRs. | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | |||||
* | Enhance TemperatureDatalogger project -- add RTC capabilities so that data ↵ | Dean Camera | 2010-01-24 | 1 | -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 Camera | 2010-01-21 | 1 | -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 Camera | 2010-01-19 | 1 | -1/+1 |
| | |||||
* | Changed XPLAINBridge project to be both a USB to USART bridge and a PDI ↵ | Dean Camera | 2010-01-19 | 1 | -1/+1 |
| | | | | programmer, based on the state of a mode select pin. | ||||
* | Added master mode hardware TWI driver. | Dean Camera | 2010-01-19 | 1 | -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 Camera | 2010-01-12 | 1 | -1/+1 |
| | |||||
* | Add new TemperatureDataLogger project, a simple USB Mass Storage class ↵ | Dean Camera | 2009-12-30 | 1 | -1/+1 |
| | | | | Temperature Data Logger using the onboard Dataflash and Temperature sensor. | ||||
* | Fix references to the renamed AVRISP-MKII project folder. | Dean Camera | 2009-12-27 | 1 | -1/+1 |
| | |||||
* | Complete combining of PDI and TPI target communication code files, stub out ↵ | Dean Camera | 2009-12-24 | 1 | -1/+1 |
| | | | | TINY NVM controller functions. | ||||
* | Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI ↵ | Dean Camera | 2009-12-24 | 1 | -1/+1 |
| | | | | and PDI programming. | ||||
* | Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵ | Dean Camera | 2009-12-24 | 1 | -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 Camera | 2009-12-23 | 1 | -1/+1 |
| | | | | protocol handlers are in seperate directories. | ||||
* | Stub out more of the TPI programming protocol routines in the AVRISP project. | Dean Camera | 2009-12-23 | 1 | -1/+1 |
| | |||||
* | Seperate out XMEGA and TINY NVM routines into seperate files. | Dean Camera | 2009-12-23 | 1 | -1/+1 |
| | |||||
* | Start of implementation of the low level TPI programming protocol in the ↵ | Dean Camera | 2009-12-23 | 1 | -1/+1 |
| | | | | AVRISP project. | ||||
* | Add const qualifier to the parameters of Projects' functions where possible. | Dean Camera | 2009-12-20 | 1 | -1/+1 |
| | |||||
* | Add LEDNotifier project to the Projects folder build list. Add new LEDMixer ↵ | Dean Camera | 2009-12-18 | 1 | -1/+1 |
| | | | | C# host application for the LEDNotifier project. | ||||
* | Fix up references in the LEDNotifier project to the old HotmailNotifier name. | Dean Camera | 2009-12-18 | 1 | -1/+1 |
| |