mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
5d2bb87ceb
Files changed only by the author of FatFS (only updated to new version): - 00history.txt - 00readme.txt - ff.c - ff.h - ffunicode.c - diskio.h - integer.h - files in `option` folder except `syscall.c` Changes: - removed option folder (now everything is in ffunicode.c) - modified Makefile to support new version of FatFS - removed syscall.c and modified ffsystem.c from FatFS author instead - modified files: diskio.c, ffconf.h to mimic changes from new version - modified files: fatfs_config.h, myfatfs.c because of changes of configuration keywords in 0.13 version - removed empty lines from beginning of files: fatfs_prefix_lib.h, myfatfs.c, sdcard.c - changed version number in documentation
25 lines
838 B
C
25 lines
838 B
C
#ifndef __FATFS_CONFIG_H__
|
|
#define __FATFS_CONFIG_H__
|
|
|
|
|
|
// don't redefine the PARTITION type
|
|
#ifndef FF_DEFINED
|
|
typedef struct {
|
|
BYTE pd; /* Physical drive number */
|
|
BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
|
|
} PARTITION;
|
|
#endif
|
|
|
|
// Table to map physical drive & partition to a logical volume.
|
|
// The first value is the physical drive and contains the GPIO pin for SS/CS of the SD card (default pin 8)
|
|
// The second value is the partition number.
|
|
#define NUM_LOGICAL_DRIVES 4
|
|
PARTITION VolToPart[NUM_LOGICAL_DRIVES] = {
|
|
{8, 1}, /* Logical drive "0:" ==> SS pin 8, 1st partition */
|
|
{8, 2}, /* Logical drive "1:" ==> SS pin 8, 2st partition */
|
|
{8, 3}, /* Logical drive "2:" ==> SS pin 8, 3st partition */
|
|
{8, 4} /* Logical drive "3:" ==> SS pin 8, 4st partition */
|
|
};
|
|
|
|
#endif /* __FATFS_CONFIG_H__ */
|