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
24e621a8d8424721ed21ce329d2a28dbf8c35343
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
23
May
22
19
18
14
13
9
8
27
Apr
25
23
20
13
12
10
8
4
27
Mar
23
21
18
16
15
14
13
11
5
3
28
Feb
27
26
20
19
17
16
15
13
12
11
10
9
6
4
2
30
Jan
26
23
22
17
16
13
10
8
3
1
31
Dec
28
26
25
24
17
13
12
3
2
30
Nov
29
27
26
25
24
23
22
21
17
16
15
14
12
10
9
8
7
5
3
2
29
Oct
28
27
26
25
24
20
17
13
12
10
7
6
2
1
30
Sep
29
28
24
22
21
19
15
14
13
12
11
9
7
5
4
3
31
Aug
29
24
22
21
20
18
10
9
8
5
3
2
1
31
Jul
30
29
28
27
26
25
23
22
21
20
19
18
15
13
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
Update MediaController project to remove the Record usage (not often needed) and explicitly declare each usage for maximum clarity.
Add new MediaController project, a simple Media Playback control manipulator (Play/Pause/Next Track/Volume/etc.).
Correct errors in the DHCP Server application in the Webserver project, that was causing random server restarts and/or incorrectly allocated IP addresses.
Add RNDIS Device support to the Webserver project, so that the files stored on the device can be viewed from a web-browser while the board is plugged into a host machine.
Fix broken Doxygen documentation.
Add new RNDIS_Host_IsPacketReceived(), RNDIS_Device_ReadPacket() and RNDIS_Device_WritePacket() functions to the Device RNDIS Class Driver.
Oops - fix bad include path in the moved USBKEY Dataflash board driver header.
Seperated out board drivers by architecture in the library internals for better organisation.
Add new "version" makefile target to the main LUFA library makefile, to give an easy way to identify a LUFA release from the command-line.
Add skeleton LUFAConfig.h to the CodeTemplates directory.
Fixed possible invalid program execution when in host mode if corrupt descriptor lengths are supplied by the attached device.
Add incomplete Android Accessory Host LowLevel demo.
Add new USE_LUFA_CONFIG_HEADER compile time option.
Minor documentation fixes.
Fix up mistakes in the Device Support documentation page.
Add __VA_ARGS__ support to the LUFA supplied ISR macro. Add proper result typecasting to the SWAPENDIAN_* macros.
Add new LUFA powered user projects to the documentation.
Fix HID class bootloader not working on the larger USB AVRs due to the altered page addressing scheme.
Make DFU and CDC class bootloaders also toggle the LEDs on command activity in addition to the periodic flashing.
Added LED flashing to the CDC and DFU class bootloaders to indicate when they are running.
Fix reversed descriptions for the AVR8 USB pad regulator enable/disable masks (thanks to Omar).
Move LUFA-110528 to BETA status for public testing.
Fix definition of pgm_read_ptr().
Create new tag for the 110528 release (Quality Assurance).
Replace cast-as-char* byte access of multibyte variables with proper shifts and masks to preserve endianness across different architectures.
Slight cleanups to the architecture specific makefile templates to make the common configuration sections as identical as possible.
Update architecture specific makefile templates so that they are as close to one-another as possible.
Add makefile template for the AVR32 UC3 architecture.
Add missing function attributes to the pipe/endpoint functions for all architectures.
Remove redundant type information for bitfield elements, other than the signed/unsignedness of the element.
Create a new Common module documentation group for the new Global Interrupt macros.
Move global interrupt enable/disable functions out to Common.h and document them.
Correct UC3 global interrupt functions.
Add in a new common Delay_MS() function, which provides a blocking delay for all architectures.
Oops - fix misnamed function call in Pipe_Discard_Stream().
Oops - fix incorrect variable name in the updated Pipe_Write_8() function.
Renamed all low level Endpoint_Read_*, Endpoint_Write_* and Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
Conditionally add available address spaces to the address space enum, for multiple address space architectures.
Ensure the library builds cleanly in device mode for architectures lacking multiple address spaces.
Use the MIN() macro where possible instead of manual "(x < y) ? x : y" constructs.
Loading