Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Altered the CDC Deivice and Host Class drivers' receive byte routines, so ↵ | Dean Camera | 2010-07-30 | 1 | -1/+2 | |
| | | | | | | 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. | |||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 1 | -3/+3 | |
| | ||||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 8 | -9/+29 | |
| | | | | | | 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 | 2 | -74/+58 | |
| | | | | 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 | 6 | -13/+37 | |
| | | | | XPLAINBridge project. | |||||
* | Fixed possible buffer overrun in the XPLAINBridge project when in serial ↵ | Dean Camera | 2010-07-15 | 2 | -1/+21 | |
| | | | | bridge mode. | |||||
* | Change AVRISP-MKII and XPLAINBridge descriptors to indicate that the device ↵ | Dean Camera | 2010-07-13 | 3 | -3/+5 | |
| | | | | is bus-powered only. Add compile time options to reduce the compiled size of the firmware. | |||||
* | 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 | -1/+1 | |
| | | | | 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 | -10/+44 | |
| | | | | | | 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. | |||||
* | Add glitch protection to the software UART in the XPLAINBridge project code, ↵ | Dean Camera | 2010-07-12 | 2 | -8/+14 | |
| | | | | so that very short glitches on the RX line don't cause a frame reception to occur. | |||||
* | Major changes to the XPLAINBridge software UART code for performance and ↵ | Dean Camera | 2010-07-11 | 3 | -55/+60 | |
| | | | | reliability. New code reduces the number of missed characters and misread characters. | |||||
* | Added new Drivers/USB/LowLevel/Device.c file to house Device mode specific ↵ | Dean Camera | 2010-07-02 | 2 | -2/+3 | |
| | | | | | | 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. | |||||
* | Make XPLAINBridge serial bridge much more reliable for the reception of ↵ | Dean Camera | 2010-06-24 | 1 | -11/+5 | |
| | | | | characters from the XMEGA through the software UART interface. | |||||
* | 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. | |||||
* | Moved calls to V2Params_UpdateParamValues() out of the main AVRISP-MKII and ↵ | Dean Camera | 2010-06-21 | 2 | -9/+6 | |
| | | | | XPLAINBridge project loops and into the AVRISP management function. | |||||
* | Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as ↵ | Dean Camera | 2010-06-16 | 3 | -4/+4 | |
| | | | | the new 1.7 Doxygen's default stylesheet is much better. | |||||
* | Oops - temp code left in the XPLAINBridge project which prevented it from ↵ | Dean Camera | 2010-06-12 | 1 | -2/+0 | |
| | | | | entering programmer mode. | |||||
* | Slight improvements to the reliability of the software UART in the ↵ | Dean Camera | 2010-06-12 | 2 | -24/+23 | |
| | | | | XPLAINBridge project. | |||||
* | Oops - light weight ring buffer documentation used \ref instead of \param to ↵ | Dean Camera | 2010-06-10 | 1 | -4/+4 | |
| | | | | document function parameters. | |||||
* | Add missing documentation to the lightweight ring buffer code in the ↵ | Dean Camera | 2010-06-10 | 1 | -89/+119 | |
| | | | | XPLAINBridge project. | |||||
* | Minor documentation cleanups. | Dean Camera | 2010-06-03 | 1 | -2/+2 | |
| | ||||||
* | Added new VTARGET_REF_VOLTS and VTARGET_SCALE_FACTOR compile time defines to ↵ | Dean Camera | 2010-05-27 | 3 | -9/+12 | |
| | | | | | | the AVRISP-MKII programmer project to set the VTARGET reference voltage and scale factor. Fixed XPLAINBridge project not correctly reading the XMEGA's supply voltage when reporting back to the host. | |||||
* | Replace ring buffer library in Benito and USBtoSerial projects with the new ↵ | Dean Camera | 2010-05-26 | 2 | -4/+8 | |
| | | | | lightweight ring buffer header to improve reliability. | |||||
* | Add better documentation to the Software UART code in the XPLAINBridge project. | Dean Camera | 2010-05-26 | 1 | -35/+71 | |
| | ||||||
* | Switch software UART over to timer 1 and remove timer prescaling to try to ↵ | Dean Camera | 2010-05-26 | 3 | -17/+17 | |
| | | | | prevent integer rounding errors and thus minimize the possible error of the UART code. | |||||
* | Rename software USART driver globals to make the code more in line with the ↵ | Dean Camera | 2010-05-26 | 3 | -12/+12 | |
| | | | | rest of the XPLAINBridge project. | |||||
* | Make software USART used in the XPLAINBridge project directly check and ↵ | Dean Camera | 2010-05-26 | 5 | -68/+42 | |
| | | | | store into the ring buffers, rather than polling from the main program loop to avoid added latency. | |||||
* | Create a new LightweightRingBuffer.h header file for the XPLAIN project to ↵ | Dean Camera | 2010-05-26 | 3 | -38/+101 | |
| | | | | abstract out the new ring buffer without a performance penalty. | |||||
* | The RingBuff library code has been replaced in the XPLAINBridge project with ↵ | Dean Camera | 2010-05-26 | 7 | -279/+64 | |
| | | | | an ultra lightweight buffer to help improve the reliability of the bridge. | |||||
* | 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. | |||||
* | The LIBUSB_FILTERDRV_COMPAT compile time option in the XPLAINBridge and ↵ | Dean Camera | 2010-05-13 | 4 | -6/+5 | |
| | | | | | | AVRISP-MKII projects has been renamed LIBUSB_DRIVER_COMPAT, as it applies to all software on all platforms using the libUSB driver. Fix Benito makefile which was accidentally changed during testing. | |||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 14 | -3928/+3928 | |
| | | | | 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. | |||||
* | 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 | 2 | -0/+2 | |
| | | | | be done in the user application once all init code has run. | |||||
* | Add const keyword to the demo function parameters where possible. | Dean Camera | 2010-04-18 | 1 | -3/+3 | |
| | ||||||
* | Add information request/response signal handler to the Bluetooth Host demo. | Dean Camera | 2010-04-06 | 2 | -2/+2 | |
| | | | | Ensure that the AVRISP-MKII project's Windows avrdude compatibility define is named properly in all parts of the code. | |||||
* | Added WIN_LIBUSB_COMPAT compile time option to the AVRISP programmer project ↵ | Dean Camera | 2010-03-31 | 5 | -10/+36 | |
| | | | | to make the code compatible with Windows builds of avrdude at the expense of AVRStudio compatibility. | |||||
* | Standardized the naming scheme given to configuration descriptor ↵ | Dean Camera | 2010-03-22 | 5 | -23/+24 | |
| | | | | | | 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. | |||||
* | Double bank CDC endpoints in the XPLAIN Bridge project, re-enable JTAG once ↵ | Dean Camera | 2010-03-21 | 1 | -2/+6 | |
| | | | | the mode selection pin has been sampled. | |||||
* | Clean up XPLAINBridge code. | Dean Camera | 2010-02-16 | 4 | -21/+42 | |
| | ||||||
* | 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 | |
| |