Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix invocations of avr-size in all makefiles broken on unpatched *nix ↵ | Dean Camera | 2010-08-08 | 1 | -1/+4 | |
| | | | | systems, due to the recent update to the latest WinAVR makefile template. | |||||
* | Hide the PROGMEM attribute from Doxygen, as it appears to confuse the parser ↵ | Dean Camera | 2010-08-02 | 1 | -1/+2 | |
| | | | | in some situations. | |||||
* | Fix XPLAINBridge project discarding characters from the USB interface due to ↵ | Dean Camera | 2010-08-01 | 2 | -62/+80 | |
| | | | | | | | | | | | | | | a double read from the endpoint. Make XPLAINBridge and USBtoSerial projects more reliable by forcing a flush if the UART-to-USB buffer becomes nearly full. Reduce locking in the LightweightRingBuffer.h header files by only locking on the update of the buffer count, and require insertions and removals from each buffer to occur in only one execution thread. Fix CDC_*_ReceiveByte() returning 0 when the interface is not configured, instead of the new -1 error value. Fix CDC_Host_ReceiveByte() not re-freezing the pipe if no packet has been received. Remove redundant Pipe token set commands in the CDC and RNDIS host class drivers. | |||||
* | Fixed Serial peripheral driver not turning off the USART before ↵ | Dean Camera | 2010-07-31 | 1 | -1/+1 | |
| | | | | reconfiguring it, which would cause incorrect operation to occur (thanks to Bob Paddock). | |||||
* | More spell checking of all source files -- correct missed errors, switch to ↵ | Dean Camera | 2010-07-30 | 2 | -3/+3 | |
| | | | | EN-GB spelling dictionary. | |||||
* | Altered the CDC Deivice and Host Class drivers' receive byte routines, so ↵ | Dean Camera | 2010-07-30 | 1 | -7/+3 | |
| | | | | | | that no data is indicated by a negative return value. Added auto flushing of OUT data to the CDC Host Class driver's USBTask function to automatically flush the send pipe buffer. | |||||
* | Oops - need to turn off USART via control register B before reconfiguring, ↵ | Dean Camera | 2010-07-30 | 1 | -2/+2 | |
| | | | | fix ordering of USART control register modifications in the Benito and USBtoSerial projects. | |||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 1 | -2/+2 | |
| | ||||||
* | Fixed Benito and USBtoSerial projects not turning off the USART before ↵ | Dean Camera | 2010-07-29 | 1 | -3/+10 | |
| | | | | reconfiguring it, which could cause incorrect operation to occur (thanks to Bob Paddock). | |||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 3 | -5/+10 | |
| | | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos. | |||||
* | Update makefiles to use the latest WinAVR/Atmel toolchain makefile template. | Dean Camera | 2010-07-19 | 1 | -59/+39 | |
| | | | | Add new module source variables to the library core makefile, so that module sources can be added to a project's makefile on a per-module rather than per-file basis. | |||||
* | Change over all makefiles to use C99 standards mode, rather than C99 + GNU ↵ | Dean Camera | 2010-07-18 | 1 | -1/+1 | |
| | | | | Extensions. | |||||
* | Disable strict aliasing explicitly in the project makefiles, as this is ↵ | Dean Camera | 2010-07-15 | 1 | -0/+1 | |
| | | | | apparently enabled by default in newer AVR-GCC builds, and aliasing is used heavily for type-punning through the LUFA and third party library's codebase. | |||||
* | Removed the automated checking of event names in the demo, project and ↵ | Dean Camera | 2010-07-15 | 1 | -18/+6 | |
| | | | | | | bootloader makefiles due to inconsistancies between the behaviour of the command line tools used to perform the check on each platform. Removed the internal endpoint and pipe memory allocation macros, as this is already performed directly in the code. Simplify the endpoint and pipe reset procedure. | |||||
* | Added ability to set the serial baud rate via the user's terminal in the ↵ | Dean Camera | 2010-07-15 | 1 | -1/+1 | |
| | | | | XPLAINBridge project. | |||||
* | Fixed possible buffer overrun in the XPLAINBridge project when in serial ↵ | Dean Camera | 2010-07-15 | 2 | -1/+21 | |
| | | | | bridge mode. | |||||
* | Add remaining AVRStudio project files to the library projects. | Dean Camera | 2010-07-13 | 1 | -0/+1 | |
| | ||||||
* | Add missing clean_doxygen phony targets to the project makefiles. | Dean Camera | 2010-07-12 | 1 | -1/+2 | |
| | ||||||
* | Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer ↵ | Dean Camera | 2010-07-12 | 1 | -2/+2 | |
| | | | | overruns will not occur regardless of hardware and baud rate settings. | |||||
* | Alter the ring buffer library headers to have both atomic and non-atomic ↵ | Dean Camera | 2010-07-12 | 2 | -11/+53 | |
| | | | | | | insertion/removal routines. Modify the existing projects so that buffer operations performed in an ISR use the shorted non-atomic versions, as they are already performed in a blocking ISR. Alter USBtoSerial demo so that it does not enter a blocking loop to send data from the USB to the USART, as this can cause dropped bytes in the reception code if large amounts of data are sent in both directions at the same time. Added a flush timer to the USBtoSerial code for the USART to USB interface, so that multiple bytes can be sent in the same USB packet. | |||||
* | Added new Drivers/USB/LowLevel/Device.c file to house Device mode specific ↵ | Dean Camera | 2010-07-02 | 1 | -0/+1 | |
| | | | | | | functions that are more complicated than simple macros. Moved USB_Device_SendRemoteWakeup() to the new Device.c source file and corrected it to unfreeze and restart the USB controller clock before issuing a Remote Wakeup request. Removed the USB_Device_IsRemoteWakeupSent() and USB_Device_IsUSBSuspended() macros, as they are now obsolete. | |||||
* | Maximise the size of the ring buffers in the Benito/XPLAINBridge/USBtoSerial ↵ | Dean Camera | 2010-06-24 | 1 | -1/+1 | |
| | | | | projects, so that they should never become full under normal conditions. | |||||
* | Oops - light weight ring buffer documentation used \ref instead of \param to ↵ | Dean Camera | 2010-06-10 | 1 | -4/+4 | |
| | | | | document function parameters. | |||||
* | Document lightweight ring buffer header files. | Dean Camera | 2010-06-06 | 1 | -20/+50 | |
| | ||||||
* | Add the svn:eol-style property onto new files which where missing it to ↵ | Dean Camera | 2010-06-06 | 1 | -89/+89 | |
| | | | | ensure uniform line endings. | |||||
* | Replace ring buffer library in Benito and USBtoSerial projects with the new ↵ | Dean Camera | 2010-05-26 | 6 | -247/+100 | |
| | | | | lightweight ring buffer header to improve reliability. | |||||
* | Remove obsolete entry from the Doxygen configuration files. | Dean Camera | 2010-05-23 | 1 | -1/+1 | |
| | ||||||
* | Renamed CDC device class demos' ManagementEndpoint descriptor to ↵ | Dean Camera | 2010-05-20 | 2 | -2/+2 | |
| | | | | NotificationEndpoint to more accurately indicate its purpose. | |||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 10 | -3350/+3350 | |
| | | | | correctly converted to the target system's native end of line style. | |||||
* | Change over instances of "make" in the makefiles to "$(MAKE)" to allow for ↵ | Dean Camera | 2010-05-07 | 1 | -1/+1 | |
| | | | | the make tool to be overridden. | |||||
* | Remove incorrect Abstract Call Management class specific descriptor from the ↵ | Dean Camera | 2010-05-06 | 2 | -9/+0 | |
| | | | | CDC demos, bootloaders and projects. | |||||
* | 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 | -2/+2 | |
| | | | | LowLevel directory as it is hardware-dependent. | |||||
* | USB_Init() no longer calls sei() to enable global interrupts - this must now ↵ | Dean Camera | 2010-04-28 | 1 | -0/+1 | |
| | | | | be done in the user application once all init code has run. | |||||
* | Standardized the naming scheme given to configuration descriptor ↵ | Dean Camera | 2010-03-22 | 2 | -10/+10 | |
| | | | | | | sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro. | |||||
* | Increased throughput of the USBtoSerial demo on systems that send multiple ↵ | Dean Camera | 2010-03-16 | 1 | -2/+2 | |
| | | | | bytes per packet (thanks to Opendous Inc.). | |||||
* | New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵ | Dean Camera | 2010-02-04 | 1 | -1/+1 | |
| | | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects. | |||||
* | Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation. | Dean Camera | 2010-02-03 | 1 | -1/+2 | |
| | ||||||
* | Update driver INF files - change manufacturer name from the original ↵ | Dean Camera | 2010-01-29 | 1 | -1/+1 | |
| | | | | template's name to the Four Walled Cubicle website. | |||||
* | 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. | |||||
* | Update Doxygen configuration files to the latest Doxygen version. | Dean Camera | 2010-01-06 | 1 | -631/+709 | |
| | ||||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 6 | -12/+12 | |
| | ||||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 6 | -42/+42 | |
| | ||||||
* | Add const qualifier to the parameters of Projects' functions where possible. | Dean Camera | 2009-12-20 | 2 | -8/+8 | |
| | ||||||
* | Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project. | Dean Camera | 2009-12-17 | 1 | -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. | |||||
* | Speed up bit-banged USART code in the AVRISP project. | Dean Camera | 2009-12-15 | 1 | -7/+7 | |
| | | | | Fix project text files to refer to "project" instead of "demo". | |||||
* | Added new XPLAIN serial Bridge project (thanks to John Steggall for the ↵ | Dean Camera | 2009-11-25 | 1 | -6/+11 | |
| | | | | software UART code). | |||||
* | Spell check all source code variables, comments and strings. | Dean Camera | 2009-11-09 | 1 | -2/+2 | |
| | ||||||
* | Add double banking property to LUFA powered projects in the Projects ↵ | Dean Camera | 2009-11-06 | 1 | -7/+10 | |
| | | | | directory. Add guards to macro parameters to ensure that formulas passed as parameters don't mess up the internal macro structure. | |||||
* | Use clearer buffer names in the USBtoSerial project to prevent confusion. | Dean Camera | 2009-10-26 | 1 | -11/+11 | |
| |