projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix ring buffer example.
[pub/USBasp.git]
/
Bootloaders
/
MassStorage
/
Lib
/
VirtualFAT.c
diff --git
a/Bootloaders/MassStorage/Lib/VirtualFAT.c
b/Bootloaders/MassStorage/Lib/VirtualFAT.c
index
23edd26
..
907b4e5
100644
(file)
--- a/
Bootloaders/MassStorage/Lib/VirtualFAT.c
+++ b/
Bootloaders/MassStorage/Lib/VirtualFAT.c
@@
-1,13
+1,13
@@
/*
LUFA Library
/*
LUFA Library
- Copyright (C) Dean Camera, 201
3
.
+ Copyright (C) Dean Camera, 201
4
.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
- Copyright 201
3
Dean Camera (dean [at] fourwalledcubicle [dot] com)
+ Copyright 201
4
Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
@@
-387,7
+387,7
@@
static void ReadWriteEEPROMFileBlock(const uint16_t BlockNumber,
{
/* Write out the mapped block of data to the device's EEPROM */
for (uint16_t i = 0; i < SECTOR_SIZE_BYTES; i++)
{
/* Write out the mapped block of data to the device's EEPROM */
for (uint16_t i = 0; i < SECTOR_SIZE_BYTES; i++)
- WriteEEPROMByte((uint8_t*)EEPROMAddress++, BlockBuffer[i]);
+
WriteEEPROMByte((uint8_t*)EEPROMAddress++, BlockBuffer[i]);
}
}
}
}