aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/MassStorage/Lib/VirtualFAT.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2018.Dean Camera2018-01-041-2/+2
|
* Update copyrights for 2017.Dean Camera2017-04-181-2/+2
|
* Update copyrights to 2016.Dean Camera2016-01-311-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-2/+2
|
* Minor documentation improvements to the Mass Storage bootloader.Dean Camera2014-10-121-14/+14
|
* Merge pull request #19 from mondalaci/attr-no-inline-cleanupDean Camera2014-01-041-2/+2
|\ | | | | Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the...
| * Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the ↵László Monda2014-01-051-2/+2
| | | | | | | | same as ATTR_NO_INLINE.
* | Update copyrights for 2014.Dean Camera2014-01-041-2/+2
|/
* Add ATTR_NEVER_INLINE attribute. Add EEPROM byte read/write proxy functions ↵Dean Camera2013-03-311-1/+6
| | | | to the Mass Storage bootloader to prevent link errors due to linker relaxations.
* Add EEPROM read/write support to the Mass Storage class bootloader.Dean Camera2013-03-301-10/+53
|
* Oops - ensure the SCSI transfer length is correct in the Mass Storage ↵Dean Camera2013-03-291-5/+5
| | | | bootloader.
* Minor documentation improvements.Dean Camera2013-03-291-6/+18
|
* Update Mass Storage bootloader for Linux compatibility, and to reduce the ↵Dean Camera2013-03-291-6/+23
| | | | compiled bootloader size. Linux appears to replace files with a cluster offset on the disk rather than re-using the same disk clusters (unlike Windows) so the file offset needs to be tracked and compensated for.
* Clean up the Mass Storage bootloader virtual FAT directory entry definitions.Dean Camera2013-03-251-4/+18
|
* Add Long File Name (VFAT) entry to the Mass Storage class bootloader, so ↵Dean Camera2013-03-251-9/+61
| | | | that systems such as Linux that load a VFAT filesystem driver instead of the legacy MSDOS filesystem do not corrupt the volume by trying to write a LFN entry.
* Significantly reduce the size of the Mass Storage class bootloader, by ↵Dean Camera2013-03-201-4/+2
| | | | removing dependencies on large LUFA internal functions.
* Update Mass Storage bootloader so that it can support devices with only 4KB ↵Dean Camera2013-03-181-6/+8
| | | | bootloader sections by creating a special AUX section before the real bootloader section to store part of the bootloader code.
* Fix off-by-one error in the Mass Storage bootloader file size, add missing ↵Dean Camera2013-03-101-1/+1
| | | | Volume Label directory entry. Remove incorrect reference to "printer" in the bootloader documentation.
* Move out the Mass Storage class bootloader to the main Bootloader directory ↵Dean Camera2013-03-101-0/+159
now that it is functional.