| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
| |
additional LED to indicate target power source.
Add support to the USBTINY-MKII's additional LED in the board's LED driver header.
Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED.
|
| |
|
|
|
|
|
|
| |
via a new software SPI driver.
Added new SPI_ORDER_* data order masks to the SPI peripheral driver.
|
|
|
|
|
|
| |
across all demos/projects/bootloaders.
Added start of the Incomplete TMC demo's command parser code.
|
|
|
|
| |
transmission code so that sent bytes do not block the remainder of the main program code from running.
|
| |
|
| |
|
|
|
|
| |
added type-safety and compile-checking.
|
|
|
|
| |
Peter Lawrence).
|
|
|
|
| |
Indent core library function parameters so that there is only one parameter per line, to increase readability.
|
|
|
|
|
|
|
|
| |
directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h.
Rename LowLevel.c/.h to USBController.c/.h.
Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports.
|
|
|
|
| |
to become ready (thanks to Robin Green).
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
XPLAINBridge project.
|
|
|
|
| |
control requests even when it has been set to NULL by the user application (thanks to Axel Rohde).
|
|
|
|
| |
single command should ever exceed the maximum timeout period. Extend timeout period to 1 second per command, so that an accidental timeout will never occur.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
reliability. New code reduces the number of missed characters and misread characters.
|
|
|
|
|
|
| |
functions so that they compile down in most instances to minimal loads and stores rather than complicated shifts.
Fixed SCSI.c implementations of all the demos/projects casting the block count to a 32-bit temporary before calling SwapEndian_16().
|
|
|
|
| |
channels are opened in the BluetoothHost demo. Make the demo echo back sent characters to the remote device.
|
|
|
|
| |
instructions clearer.
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
element, as the Bluetooth adaptions to RFCOMM only allow UIH frames to be used.
|
|
|
|
|
|
| |
flash memory space.
Added new SWAPENDIAN_16() and SWAPENDIAN_32() macros to Common.h for statically initialized variables at compile time.
|
| |
|
|
|
|
| |
Minor tweaks to the library documentation.
|
|
|
|
| |
code.
|
|
|
|
| |
the new 1.7 Doxygen's default stylesheet is much better.
|
| |
|
| |
|
|
|
|
| |
input parameters, change addressing to use the raw DLCI address plus flags.
|
|
|
|
| |
C++ compatibility (thanks to Michael Hennebry).
|
|
|
|
| |
function, to make the header file C++ compatible once again. Implement workaround for an obscure GCC bug which can cause incorrect code generation under some circumstances when the void* is re-cast.
|
|
|
|
| |
(thanks to Axel Rohde).
|
|
|
|
|
|
| |
to Axel Rohde).
Partial fix to the Bluetooth SDP code - data should be encoded in big endian, not little endian.
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
lightweight ring buffer header to improve reliability.
|
|
|
|
| |
Bootloader code, to save space.
|
|
|
|
|
|
| |
of eeprom_write_byte(), so that only changed bytes are written to EEPROM to preserve its lifespan.
Changed over the AVRISP-MKII and TemperatureDataLogger projects to use eeprom_update_byte() when writing non-volatile parameters to EEPROM to preserve its lifespan.
|
|
|
|
| |
an ultra lightweight buffer to help improve the reliability of the bridge.
|
|
|
|
|
|
| |
Ethernet/TCP packets of more than ~500 bytes due to an overflow in the checksum calculation loop (thanks to Kevin Malec).
Removed string Attributes from the Service Discovery Protocol code to minimise the potential points of failure while the base code is being debugged.
|
|
|
|
| |
needs to be cleared, not the buffer pointer.
|
| |
|
| |
|
|
|
|
| |
XMEGA targets when writing to the EEPROM instead of the split write-only command (thanks to Tim Margush).
|