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
Graph
37c9ba7fa980472406625973f0ee32719b5a8997
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
You can move around the graph by using the arrow keys.
Begin with the selected commit
Created with Raphaël 2.2.0
7
Jun
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
6
5
4
3
2
31
Jul
30
29
28
27
26
24
23
21
20
Make the RFCOMM_SendFrame() function correctly generate frames from the input parameters, change addressing to use the raw DLCI address plus flags.
Refactor out RFCOMM packet send code into a seperate function.
Fix incorrect copyright attribution on the class-driver keyboard demos due to header copy-pasting.
Document lightweight ring buffer header files.
Add the svn:eol-style property onto new files which where missing it to ensure uniform line endings.
Document Bluetooth files with overall file Doxygen comments. Add more initial RFCOMM layer code to receive and respond to SABM packets.
Fixed incorrect function references in the Mass Storage Class driver documentation.
More documentation fixes.
Minor documentation cleanups.
Start implementation of RFCOMM decoding layer. Add new service initialize routines for each Bluetooth service - currently unused, but will eventually reset the service state of RFCOMM when a new connection is made.
Delay needed in bluetooth code due to the send function not waiting for the pipe bank to become ready before writing. Add in a call to Pipe_WaitUntilReady() to fix the issue.
Extra protocol value in the RFCOMM protocol is the channel number, not the PSM - update typedef name and size.
Add PSM value to the RFCOMM service so that the host knows what PSM to use on channels when trying to access it.
Add start of RFCOMM service layer to the incomplete BluetoothHost demo.
Oops - descriptor pointer should be assigned, not incremented with the new type-safe code.
Better fix to avoid void pointer arithmetic in ConfigDescriptor.h to regain C++ compatibility (thanks to Michael Hennebry).
Fix byte ordering of UUIDs in the SDP server - host can now successfully pair to the Bluetooth device and discover the exposed Serial Port Profile RFCOMM service.
The SDP UUID lists should be searched and ALL UUIDs matched for a record to be retrieved, not partial matches. Change the SDP code so that the entire list must be matched against a service attribute table's contents before it is returned.
Add L2CAP service attribute table. Fix up ProtocolDescriptorList attributes, and add macros for used UUIDs to reduce typing and make the code easier to read.
Clean up the Service tables, add incomplete ProtocolDescriptorList attribute to the SDP service.
Remove incorrect Language ID offset attribute from the SDP server - client assumes 0x0100 offset for primary language anyway, and the format of the offset was incorrect anyway.
Service Attribute SDP requests should have only one Data Element Sequence container around the single service's retrieved attributes, not two.
Document inline SDP data read/write functions.
Much faster attribute range lookup - look through short list of attributes and compare to range, rather than looking up by each possible value within the range.
Fix the encoding of UUIDs in the SDP server so that they match the Bluetooth UUID format properly.
Move SDP service tables out into a new set of files, to make the SDP service code cleaner.
Add Service Attribute request processing to the SDP server code.
Fix endianness issues in the Service Discovery Protocol service of the incomplete Bluetooth Host demo. Host can now correctly retrieve specific services, however Windows does not appear to be sending the appropriate generic browse class IDs needed to report the virtual serial service.
Remove void* arithmetic in the USB_GetNextDescriptor() static inline 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.
Small tweaks to ConfigDescriptor.c/.h to ensure pointers use the correct type, and to remove const attribute from the descriptor comparator callback function pointer type define, and into the function prototype instead.
Fixed internal device serial not being accessible on the ATMEGAXXU2 AVRs (thanks to Axel Rohde).
Fix spacing of the function parameter descriptions in the Doxygen documentation.
Fixed incorrect signature for the ATMEGA32U2 in the DFU bootloader (thanks to Axel Rohde).
Added new VTARGET_REF_VOLTS and VTARGET_SCALE_FACTOR compile time defines to the AVRISP-MKII programmer project to set the VTARGET reference voltage and scale factor.
Replace ring buffer library in Benito and USBtoSerial projects with the new lightweight ring buffer header to improve reliability.
Removed unused line encoding data and control requests from the CDC Bootloader code, to save space.
Switch to using the correct intptr_t type use where a pointer must be cast to an integer type.
The EEPROM stream read/write functions now use eeprom_update_byte() instead of eeprom_write_byte(), so that only changed bytes are written to EEPROM to preserve its lifespan.
Add better documentation to the Software UART code in the XPLAINBridge project.
Switch software UART over to timer 1 and remove timer prescaling to try to prevent integer rounding errors and thus minimize the possible error of the UART code.
Loading