Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Repository graph
Repository graph
You can move around the graph by using the arrow keys.
5a4197a91e31fbc3e6bbcca36031d1b5873b643d
Select Git revision
Branches
1
master
default
protected
Tags
15
LUFA-170418
LUFA-151115
LUFA-140928
LUFA-140302
LUFA-130901
LUFA-130901-BETA
LUFA-130303
LUFA-120730
LUFA-120730-BETA
LUFA-120219
LUFA-120219-BETA
LUFA-111009
LUFA-111009-BETA
LUFA-110528
LUFA-110528-BETA
16 results
Begin with the selected commit
Created with Raphaël 2.2.0
13
Jul
12
11
9
8
6
4
2
29
Jun
26
25
24
23
22
21
17
16
15
14
13
12
10
8
7
6
4
3
2
1
31
May
30
29
27
26
25
23
21
20
18
17
16
14
13
12
11
10
9
8
7
6
4
3
2
30
Apr
29
28
27
22
20
19
18
15
14
13
12
11
10
6
5
1
31
Mar
30
29
25
24
23
22
21
19
17
16
15
13
10
9
1
25
Feb
24
23
22
21
20
19
18
16
15
14
13
12
11
10
9
8
7
5
4
3
2
1
31
Jan
29
28
27
25
24
21
19
17
16
15
12
7
6
5
4
3
30
Dec
29
28
27
26
24
23
21
20
18
17
16
15
14
13
11
10
9
8
7
6
4
3
2
30
Nov
29
27
26
25
24
23
22
20
17
16
15
13
12
11
10
9
8
7
6
4
3
26
Oct
18
16
14
12
11
8
5
4
3
2
1
30
Sep
29
28
24
22
21
20
17
14
13
10
9
7
6
2
1
31
Aug
30
28
27
26
25
24
23
20
19
18
17
16
13
11
9
7
Add first lot of AVRStudio project files for some of the library projects.
Rename the AVRISP main source files to AVRISP-MKII so that it matches the project name. Add AVRStudio project file for the AVRISP-MKII project.
Add missing eol-style properties to new source files.
Add missing clean_doxygen phony targets to the project makefiles.
Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer overruns will not occur regardless of hardware and baud rate settings.
Alter the ring buffer library headers to have both atomic and non-atomic 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.
Add glitch protection to the software UART in the XPLAINBridge project code, 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 reliability. New code reduces the number of missed characters and misread characters.
Correct misspellings in the Bluetooth demo code.
Add more doxygen function documentation to the RFCOMM layer.
Oops - ACL layer Bluetooth_SendPacket() function should check and allow NULL channels, since that indicates a control channel request.
Rename Bluetooth stack function parameters to clearly indicate what sort of Bluetooth channel (ACL, RFCOMM) is required for each parameter, to make the code easier to read.
Oops - fix errors in the MassStorageKeyboard SCSI driver file due to incorrect copy/paste.
Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() functions so that they compile down in most instances to minimal loads and stores rather than complicated shifts.
Add a new RFCOMM_ChannelOpened() callback event for when logical RFCOMM channels are opened in the BluetoothHost demo. Make the demo echo back sent characters to the remote device.
Add a new RFCOMM service callback for when new data has been received on a valid RFCOMM channel.
Move out Bluetooth stack callback functions to a seperate BluetoothEvents.c/.h set of files for clarity in the Incomplete BluetoothHost demo. Add a new stack callback for opened ACL channels, make the demo save the RFCOMM channel when opened so that it does not have to search for it on each iteration of the main program loop.
Make main readme file easier to read, and make documentation build instructions clearer.
Improve commenting of the Dataflash stub board driver file, to prevent confusion of what the dataflash selection masks need to be. Update stub driver to automatically interleave data between the chips if two Dataflash chips are present.
Added new Drivers/USB/LowLevel/Device.c file to house Device mode specific 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.
Move out RFCOMM channel structure init code to a seperate routine, to save on compiled code space and to prevent copy-paste errors.
Add RFCOMM service routine, to send pending configuration requests on RFCOMM channels. Add in RFCOMM channel config flags, to determine which configuration commands have been sent and received.
Make Bluetooth ACL channel searches skip over closed (invalid) channels. RFCOMM channels are considered invalid when the channel state is closed, not when the DLCI is zero - fix incorrect code.
Add default "all" makefile targets to the demo tree makefiles.
Make loops in AVRISP-MKII Clone project's XPROG protocol infinite rather than looping on the timeout value, as this is already checked inside the loop anyway.
Fix Doxygen formatting of parameters for the CALLBACK_HID_Device_CreateHIDReport() function in the ClassDriver HID device demos.
Make XPLAINBridge serial bridge much more reliable for the reception of characters from the XMEGA through the software UART interface.
Maximise the size of the ring buffers in the Benito/XPLAINBridge/USBtoSerial projects, so that they should never become full under normal conditions.
Split RFCOMM channel signals into Remote and Local pairs. Use memcpy() to copy over data from the command parameters to the RFCOMM response parameters.
Add TEST RFCOMM command handler. Remove the RFCOMM channel UseUIFrame element, as the Bluetooth adaptions to RFCOMM only allow UIH frames to be used.
Use a bitmask instead of an array of bools in the SDP UUID List matching algorithm to reduce the compiled code size and stack used.
Added new pgm_read_ptr() macro to Common.h for reading of pointers out of flash memory space.
Moved calls to V2Params_UpdateParamValues() out of the main AVRISP-MKII and XPLAINBridge project loops and into the AVRISP management function.
Fixed broken PDI EEPROM Section Erase functionality in the AVRISP-MKII project.
Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().
Fix compile and Doxygen errors due to the spell-check changes in the source code.
Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as the new 1.7 Doxygen's default stylesheet is much better.
Rename RFCOMM_GetFrameDataLength() to RFCOMM_GetVariableFieldValue() as it is multi-purpose, and modify it to move the buffer pointer itself rather than relying on the caller.
Changed the RFCOMM-specific ItemProtocolChannel_t type to a more generic ItemProtocol_8BitParam_t name, and added a new ItemProtocol_16BitParam_t to the SDP protocol type defines.
Add RFCOMM channel configuration parsing and channel states to the incomplete BluetoothHost demo.
Loading