FatFs R0.14a, released December 5, 2020

This commit is contained in:
Christopher Williams
2021-01-14 18:05:43 -07:00
parent cf1fa00811
commit 8aa4448e7e
36 changed files with 524 additions and 410 deletions
+3 -3
View File
@@ -68,9 +68,9 @@ Example: "0:", "1:" and "2:" are associated with three partitions on the physica
"3:" is associated with physical drive 1 (removable drive)
PARTITION VolToPart[FF_VOLUMES] = {
{0, 1}, <span class="c">/* "0:" ==> 1st partition of physical drive 0 */</span>
{0, 2}, <span class="c">/* "1:" ==> 2nd partition of physical drive 0 */</span>
{0, 3}, <span class="c">/* "2:" ==> 3rd partition of physical drive 0 */</span>
{0, 1}, <span class="c">/* "0:" ==> 1st partition on physical drive 0 */</span>
{0, 2}, <span class="c">/* "1:" ==> 2nd partition on physical drive 0 */</span>
{0, 3}, <span class="c">/* "2:" ==> 3rd partition on physical drive 0 */</span>
{1, 0} <span class="c">/* "3:" ==> Physical drive 1 */</span>
};
</pre>