mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2025-01-09 19:17:23 -03:00
Update dependencies.
* Update libusbhsfs to 8c2e517. Furthermore, the UMS handler has been rewritten to use the new callback-based system from libusbhsfs. * Update FatFs to R0.15 w/patch2.
This commit is contained in:
parent
3c0312961b
commit
7e399d91db
10 changed files with 689 additions and 586 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -16,5 +16,7 @@ host/nxdumptool
|
||||||
*.log
|
*.log
|
||||||
*.spec
|
*.spec
|
||||||
*.exe
|
*.exe
|
||||||
|
|
||||||
|
# TODO: remove these entries when we're done using PoCs.
|
||||||
main.cpp
|
main.cpp
|
||||||
/code_templates/tmp/*
|
/code_templates/tmp/*
|
||||||
|
|
|
@ -122,7 +122,7 @@ static MenuElement *g_xciMenuElements[] = {
|
||||||
.element_options = NULL
|
.element_options = NULL
|
||||||
},
|
},
|
||||||
&(MenuElement){
|
&(MenuElement){
|
||||||
.str = "append key area",
|
.str = "prepend key area",
|
||||||
.child_menu = NULL,
|
.child_menu = NULL,
|
||||||
.task_func = NULL,
|
.task_func = NULL,
|
||||||
.element_options = &(MenuElementOption){
|
.element_options = &(MenuElementOption){
|
||||||
|
@ -553,7 +553,9 @@ void updateStorageList(void)
|
||||||
{
|
{
|
||||||
sprintf(g_storageOptions[idx], "usb host (pc)");
|
sprintf(g_storageOptions[idx], "usb host (pc)");
|
||||||
} else {
|
} else {
|
||||||
sprintf(total_str, "%s/", i == 0 ? DEVOPTAB_SDMC_DEVICE : g_umsDevices[i - 2].name);
|
UsbHsFsDevice *ums_device = (i >= 2 ? &(g_umsDevices[i - 2]) : NULL);
|
||||||
|
|
||||||
|
sprintf(total_str, "%s/", i == 0 ? DEVOPTAB_SDMC_DEVICE : ums_device->name);
|
||||||
utilsGetFileSystemStatsByPath(total_str, &total, &free);
|
utilsGetFileSystemStatsByPath(total_str, &total, &free);
|
||||||
utilsGenerateFormattedSizeString(total, total_str, sizeof(total_str));
|
utilsGenerateFormattedSizeString(total, total_str, sizeof(total_str));
|
||||||
utilsGenerateFormattedSizeString(free, free_str, sizeof(free_str));
|
utilsGenerateFormattedSizeString(free, free_str, sizeof(free_str));
|
||||||
|
@ -562,8 +564,6 @@ void updateStorageList(void)
|
||||||
{
|
{
|
||||||
sprintf(g_storageOptions[idx], DEVOPTAB_SDMC_DEVICE " (%s / %s)", free_str, total_str);
|
sprintf(g_storageOptions[idx], DEVOPTAB_SDMC_DEVICE " (%s / %s)", free_str, total_str);
|
||||||
} else {
|
} else {
|
||||||
UsbHsFsDevice *ums_device = &(g_umsDevices[i]);
|
|
||||||
|
|
||||||
if (ums_device->product_name[0])
|
if (ums_device->product_name[0])
|
||||||
{
|
{
|
||||||
sprintf(g_storageOptions[idx], "%s (%s, LUN %u, FS #%u, %s)", ums_device->name, ums_device->product_name, ums_device->lun, ums_device->fs_idx, LIBUSBHSFS_FS_TYPE_STR(ums_device->fs_type));
|
sprintf(g_storageOptions[idx], "%s (%s, LUN %u, FS #%u, %s)", ums_device->name, ums_device->product_name, ums_device->lun, ums_device->fs_idx, LIBUSBHSFS_FS_TYPE_STR(ums_device->fs_type));
|
||||||
|
@ -721,8 +721,9 @@ static bool saveDumpTxt(void)
|
||||||
static char *generateOutputFileName(const char *extension)
|
static char *generateOutputFileName(const char *extension)
|
||||||
{
|
{
|
||||||
char *filename = NULL, *prefix = NULL, *output = NULL;
|
char *filename = NULL, *prefix = NULL, *output = NULL;
|
||||||
|
u32 dev_idx = g_storageMenuElementOption.selected;
|
||||||
|
|
||||||
if (!extension || !*extension || !(filename = titleGenerateGameCardFileName(TitleNamingConvention_Full, g_storageMenuElementOption.selected > 0 ? TitleFileNameIllegalCharReplaceType_IllegalFsChars : TitleFileNameIllegalCharReplaceType_KeepAsciiCharsOnly)))
|
if (!extension || !*extension || !(filename = titleGenerateGameCardFileName(TitleNamingConvention_Full, dev_idx > 0 ? TitleFileNameIllegalCharReplaceType_IllegalFsChars : TitleFileNameIllegalCharReplaceType_KeepAsciiCharsOnly)))
|
||||||
{
|
{
|
||||||
consolePrint("failed to get gamecard filename!\n");
|
consolePrint("failed to get gamecard filename!\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -738,7 +739,7 @@ static char *generateOutputFileName(const char *extension)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(prefix, "%s/gamecard_data/", g_storageMenuElementOption.selected == 0 ? DEVOPTAB_SDMC_DEVICE : g_umsDevices[g_storageMenuElementOption.selected - 2].name);
|
sprintf(prefix, "%s/gamecard_data/", dev_idx == 0 ? DEVOPTAB_SDMC_DEVICE : g_umsDevices[dev_idx - 2].name);
|
||||||
}
|
}
|
||||||
|
|
||||||
output = utilsGeneratePath(prefix, filename, extension);
|
output = utilsGeneratePath(prefix, filename, extension);
|
||||||
|
@ -897,6 +898,7 @@ static bool saveGameCardImage(void)
|
||||||
Thread read_thread = {0}, write_thread = {0};
|
Thread read_thread = {0}, write_thread = {0};
|
||||||
|
|
||||||
char *filename = NULL;
|
char *filename = NULL;
|
||||||
|
u32 dev_idx = g_storageMenuElementOption.selected;
|
||||||
|
|
||||||
bool success = false;
|
bool success = false;
|
||||||
|
|
||||||
|
@ -966,7 +968,7 @@ static bool saveGameCardImage(void)
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_storageMenuElementOption.selected == 0)
|
if (dev_idx == 0)
|
||||||
{
|
{
|
||||||
if (gc_size > FAT32_FILESIZE_LIMIT && !utilsCreateConcatenationFile(filename))
|
if (gc_size > FAT32_FILESIZE_LIMIT && !utilsCreateConcatenationFile(filename))
|
||||||
{
|
{
|
||||||
|
@ -974,7 +976,7 @@ static bool saveGameCardImage(void)
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (g_umsDevices[g_storageMenuElementOption.selected - 2].fs_type < UsbHsFsDeviceFileSystemType_exFAT && gc_size > FAT32_FILESIZE_LIMIT)
|
if (g_umsDevices[dev_idx - 2].fs_type < UsbHsFsDeviceFileSystemType_exFAT && gc_size > FAT32_FILESIZE_LIMIT)
|
||||||
{
|
{
|
||||||
consolePrint("split dumps not supported for FAT12/16/32 volumes in UMS devices (yet)\n");
|
consolePrint("split dumps not supported for FAT12/16/32 volumes in UMS devices (yet)\n");
|
||||||
goto end;
|
goto end;
|
||||||
|
@ -1109,7 +1111,7 @@ static bool saveConsoleLafwBlob(void)
|
||||||
u64 lafw_version = 0;
|
u64 lafw_version = 0;
|
||||||
LotusAsicFirmwareBlob lafw_blob = {0};
|
LotusAsicFirmwareBlob lafw_blob = {0};
|
||||||
bool success = false;
|
bool success = false;
|
||||||
u32 crc = 0;
|
u32 crc = 0, dev_idx = g_storageMenuElementOption.selected;
|
||||||
|
|
||||||
if (!gamecardGetLotusAsicFirmwareBlob(&lafw_blob, &lafw_version))
|
if (!gamecardGetLotusAsicFirmwareBlob(&lafw_blob, &lafw_version))
|
||||||
{
|
{
|
||||||
|
@ -1126,7 +1128,8 @@ static bool saveConsoleLafwBlob(void)
|
||||||
consolePrint("get console lafw blob ok\n");
|
consolePrint("get console lafw blob ok\n");
|
||||||
|
|
||||||
crc = crc32Calculate(&lafw_blob, sizeof(LotusAsicFirmwareBlob));
|
crc = crc32Calculate(&lafw_blob, sizeof(LotusAsicFirmwareBlob));
|
||||||
snprintf(path, MAX_ELEMENTS(path), "LAFW (%s) (%s) (v%lu) (%08X).bin", fw_type_str, dev_type_str, lafw_version, crc);
|
snprintf(path, MAX_ELEMENTS(path), "%s/gamecard_data/LAFW (%s) (%s) (v%lu) (%08X).bin", dev_idx == 0 ? DEVOPTAB_SDMC_DEVICE : g_umsDevices[dev_idx - 2].name, fw_type_str, dev_type_str, lafw_version, crc);
|
||||||
|
utilsCreateDirectoryTree(path, false);
|
||||||
|
|
||||||
if (!saveFileData(path, &lafw_blob, sizeof(LotusAsicFirmwareBlob))) goto end;
|
if (!saveFileData(path, &lafw_blob, sizeof(LotusAsicFirmwareBlob))) goto end;
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ namespace nxdt::tasks
|
||||||
class AsyncTask
|
class AsyncTask
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
std::recursive_mutex mtx;
|
std::recursive_mutex m_mtx{};
|
||||||
AsyncTaskStatus m_status = AsyncTaskStatus::PENDING;
|
AsyncTaskStatus m_status = AsyncTaskStatus::PENDING;
|
||||||
Result m_result{};
|
Result m_result{};
|
||||||
std::future<Result> m_future{};
|
std::future<Result> m_future{};
|
||||||
|
@ -76,7 +76,7 @@ namespace nxdt::tasks
|
||||||
/* Runs on the calling thread after doInBackground() finishes execution. */
|
/* Runs on the calling thread after doInBackground() finishes execution. */
|
||||||
void finish(Result&& result)
|
void finish(Result&& result)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
|
|
||||||
/* Copy result. */
|
/* Copy result. */
|
||||||
this->m_result = result;
|
this->m_result = result;
|
||||||
|
@ -124,7 +124,7 @@ namespace nxdt::tasks
|
||||||
/* Posts asynchronous task result. Runs on the asynchronous task thread. */
|
/* Posts asynchronous task result. Runs on the asynchronous task thread. */
|
||||||
virtual Result postResult(Result&& result)
|
virtual Result postResult(Result&& result)
|
||||||
{
|
{
|
||||||
return result;
|
return std::move(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Cleanup function called if the task is cancelled. Runs on the calling thread. */
|
/* Cleanup function called if the task is cancelled. Runs on the calling thread. */
|
||||||
|
@ -142,7 +142,7 @@ namespace nxdt::tasks
|
||||||
/* Stores the current progress inside the class. Runs on the asynchronous task thread. */
|
/* Stores the current progress inside the class. Runs on the asynchronous task thread. */
|
||||||
virtual void publishProgress(const Progress& progress)
|
virtual void publishProgress(const Progress& progress)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
|
|
||||||
/* Don't proceed if the task isn't running. */
|
/* Don't proceed if the task isn't running. */
|
||||||
if (this->getStatus() != AsyncTaskStatus::RUNNING || this->isCancelled()) return;
|
if (this->getStatus() != AsyncTaskStatus::RUNNING || this->isCancelled()) return;
|
||||||
|
@ -154,7 +154,7 @@ namespace nxdt::tasks
|
||||||
/* Returns the current progress. May run on both threads. */
|
/* Returns the current progress. May run on both threads. */
|
||||||
Progress getProgress(void)
|
Progress getProgress(void)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
return this->m_progress;
|
return this->m_progress;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ namespace nxdt::tasks
|
||||||
/* Cancels the task. Runs on the calling thread. */
|
/* Cancels the task. Runs on the calling thread. */
|
||||||
void cancel(void) noexcept
|
void cancel(void) noexcept
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
|
|
||||||
/* Return right away if the task has already completed, or if it has already been cancelled. */
|
/* Return right away if the task has already completed, or if it has already been cancelled. */
|
||||||
if (this->getStatus() == AsyncTaskStatus::FINISHED || this->isCancelled()) return;
|
if (this->getStatus() == AsyncTaskStatus::FINISHED || this->isCancelled()) return;
|
||||||
|
@ -202,7 +202,7 @@ namespace nxdt::tasks
|
||||||
try {
|
try {
|
||||||
return this->postResult(this->doInBackground(params...));
|
return this->postResult(this->doInBackground(params...));
|
||||||
} catch(...) {
|
} catch(...) {
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
this->cancel();
|
this->cancel();
|
||||||
this->m_rethrowException = true;
|
this->m_rethrowException = true;
|
||||||
this->m_exceptionPtr = std::current_exception();
|
this->m_exceptionPtr = std::current_exception();
|
||||||
|
@ -283,7 +283,7 @@ namespace nxdt::tasks
|
||||||
/* Can be used by the asynchronous task to return prematurely. */
|
/* Can be used by the asynchronous task to return prematurely. */
|
||||||
bool isCancelled(void) noexcept
|
bool isCancelled(void) noexcept
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
return this->m_cancelled;
|
return this->m_cancelled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -291,7 +291,7 @@ namespace nxdt::tasks
|
||||||
/* If an exception is thrown by the asynchronous task, it will be rethrown by this function. */
|
/* If an exception is thrown by the asynchronous task, it will be rethrown by this function. */
|
||||||
bool loopCallback(void)
|
bool loopCallback(void)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock(this->mtx);
|
std::lock_guard<std::recursive_mutex> lock(this->m_mtx);
|
||||||
|
|
||||||
auto status = this->getStatus();
|
auto status = this->getStatus();
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*----------------------------------------------------------------------------/
|
/*----------------------------------------------------------------------------/
|
||||||
/ FatFs - Generic FAT Filesystem module R0.14b /
|
/ FatFs - Generic FAT Filesystem module R0.15 /
|
||||||
/-----------------------------------------------------------------------------/
|
/-----------------------------------------------------------------------------/
|
||||||
/
|
/
|
||||||
/ Copyright (C) 2021, ChaN, all right reserved.
|
/ Copyright (C) 2022, ChaN, all right reserved.
|
||||||
/
|
/
|
||||||
/ FatFs module is an open source software. Redistribution and use of FatFs in
|
/ FatFs module is an open source software. Redistribution and use of FatFs in
|
||||||
/ source and binary forms, with or without modification, are permitted provided
|
/ source and binary forms, with or without modification, are permitted provided
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
|
|
||||||
#ifndef FF_DEFINED
|
#ifndef FF_DEFINED
|
||||||
#define FF_DEFINED 86631 /* Revision ID */
|
#define FF_DEFINED 80286 /* Revision ID */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -131,10 +131,11 @@ extern const char* VolumeStr[FF_VOLUMES]; /* User defied volume ID */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
BYTE fs_type; /* Filesystem type (0:not mounted) */
|
BYTE fs_type; /* Filesystem type (0:not mounted) */
|
||||||
BYTE pdrv; /* Associated physical drive */
|
BYTE pdrv; /* Volume hosting physical drive */
|
||||||
|
BYTE ldrv; /* Logical drive number (used only when FF_FS_REENTRANT) */
|
||||||
BYTE n_fats; /* Number of FATs (1 or 2) */
|
BYTE n_fats; /* Number of FATs (1 or 2) */
|
||||||
BYTE wflag; /* win[] flag (b0:dirty) */
|
BYTE wflag; /* win[] status (b0:dirty) */
|
||||||
BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
|
BYTE fsi_flag; /* FSINFO status (b7:disabled, b0:dirty) */
|
||||||
WORD id; /* Volume mount ID */
|
WORD id; /* Volume mount ID */
|
||||||
WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
|
WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
|
||||||
WORD csize; /* Cluster size [sectors] */
|
WORD csize; /* Cluster size [sectors] */
|
||||||
|
@ -147,9 +148,6 @@ typedef struct {
|
||||||
#if FF_FS_EXFAT
|
#if FF_FS_EXFAT
|
||||||
BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
|
BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
|
||||||
#endif
|
#endif
|
||||||
#if FF_FS_REENTRANT
|
|
||||||
FF_SYNC_t sobj; /* Identifier of sync object */
|
|
||||||
#endif
|
|
||||||
#if !FF_FS_READONLY
|
#if !FF_FS_READONLY
|
||||||
DWORD last_clst; /* Last allocated cluster */
|
DWORD last_clst; /* Last allocated cluster */
|
||||||
DWORD free_clst; /* Number of free clusters */
|
DWORD free_clst; /* Number of free clusters */
|
||||||
|
@ -163,10 +161,10 @@ typedef struct {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
|
DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
|
||||||
DWORD fsize; /* Size of an FAT [sectors] */
|
DWORD fsize; /* Number of sectors per FAT */
|
||||||
LBA_t volbase; /* Volume base sector */
|
LBA_t volbase; /* Volume base sector */
|
||||||
LBA_t fatbase; /* FAT base sector */
|
LBA_t fatbase; /* FAT base sector */
|
||||||
LBA_t dirbase; /* Root directory base sector/cluster */
|
LBA_t dirbase; /* Root directory base sector (FAT12/16) or cluster (FAT32/exFAT) */
|
||||||
LBA_t database; /* Data base sector */
|
LBA_t database; /* Data base sector */
|
||||||
#if FF_FS_EXFAT
|
#if FF_FS_EXFAT
|
||||||
LBA_t bitbase; /* Allocation bitmap base sector */
|
LBA_t bitbase; /* Allocation bitmap base sector */
|
||||||
|
@ -181,7 +179,7 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
FATFS* fs; /* Pointer to the hosting volume of this object */
|
FATFS* fs; /* Pointer to the hosting volume of this object */
|
||||||
WORD id; /* Hosting volume mount ID */
|
WORD id; /* Hosting volume's mount ID */
|
||||||
BYTE attr; /* Object attribute */
|
BYTE attr; /* Object attribute */
|
||||||
BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
|
BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
|
||||||
DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
|
DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
|
||||||
|
@ -250,7 +248,7 @@ typedef struct {
|
||||||
WORD ftime; /* Modified time */
|
WORD ftime; /* Modified time */
|
||||||
BYTE fattrib; /* File attribute */
|
BYTE fattrib; /* File attribute */
|
||||||
#if FF_USE_LFN
|
#if FF_USE_LFN
|
||||||
TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */
|
TCHAR altname[FF_SFN_BUF + 1];/* Alternative file name */
|
||||||
TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
|
TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
|
||||||
#else
|
#else
|
||||||
TCHAR fname[12 + 1]; /* File name */
|
TCHAR fname[12 + 1]; /* File name */
|
||||||
|
@ -298,8 +296,10 @@ typedef enum {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
/* FatFs Module Application Interface */
|
||||||
/*--------------------------------------------------------------*/
|
/*--------------------------------------------------------------*/
|
||||||
/* FatFs module application interface */
|
|
||||||
|
|
||||||
FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
|
FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
|
||||||
FRESULT f_close (FIL* fp); /* Close an open file object */
|
FRESULT f_close (FIL* fp); /* Close an open file object */
|
||||||
|
@ -336,6 +336,8 @@ int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
|
||||||
int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
|
int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
|
||||||
TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
|
TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
|
||||||
|
|
||||||
|
/* Some API fucntions are implemented as macro */
|
||||||
|
|
||||||
#define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
|
#define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
|
||||||
#define f_error(fp) ((fp)->err)
|
#define f_error(fp) ((fp)->err)
|
||||||
#define f_tell(fp) ((fp)->fptr)
|
#define f_tell(fp) ((fp)->fptr)
|
||||||
|
@ -349,38 +351,43 @@ TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the fil
|
||||||
|
|
||||||
|
|
||||||
/*--------------------------------------------------------------*/
|
/*--------------------------------------------------------------*/
|
||||||
/* Additional user defined functions */
|
/* Additional Functions */
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
|
||||||
/* RTC function */
|
/* RTC function (provided by user) */
|
||||||
#if !FF_FS_READONLY && !FF_FS_NORTC
|
#if !FF_FS_READONLY && !FF_FS_NORTC
|
||||||
DWORD get_fattime (void);
|
DWORD get_fattime (void); /* Get current time */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* LFN support functions */
|
|
||||||
#if FF_USE_LFN >= 1 /* Code conversion (defined in unicode.c) */
|
/* LFN support functions (defined in ffunicode.c) */
|
||||||
|
|
||||||
|
#if FF_USE_LFN >= 1
|
||||||
WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
|
WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
|
||||||
WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
|
WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
|
||||||
DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */
|
DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */
|
||||||
#endif
|
#endif
|
||||||
#if FF_USE_LFN == 3 /* Dynamic memory allocation */
|
|
||||||
void* ff_memalloc (UINT msize); /* Allocate memory block */
|
|
||||||
void ff_memfree (void* mblock); /* Free memory block */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Sync functions */
|
|
||||||
#if FF_FS_REENTRANT
|
/* O/S dependent functions (samples available in ffsystem.c) */
|
||||||
int ff_cre_syncobj (BYTE vol, FF_SYNC_t* sobj); /* Create a sync object */
|
|
||||||
int ff_req_grant (FF_SYNC_t sobj); /* Lock sync object */
|
#if FF_USE_LFN == 3 /* Dynamic memory allocation */
|
||||||
void ff_rel_grant (FF_SYNC_t sobj); /* Unlock sync object */
|
void* ff_memalloc (UINT msize); /* Allocate memory block */
|
||||||
int ff_del_syncobj (FF_SYNC_t sobj); /* Delete a sync object */
|
void ff_memfree (void* mblock); /* Free memory block */
|
||||||
|
#endif
|
||||||
|
#if FF_FS_REENTRANT /* Sync functions */
|
||||||
|
int ff_mutex_create (int vol); /* Create a sync object */
|
||||||
|
void ff_mutex_delete (int vol); /* Delete a sync object */
|
||||||
|
int ff_mutex_take (int vol); /* Lock sync object */
|
||||||
|
void ff_mutex_give (int vol); /* Unlock sync object */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*--------------------------------------------------------------*/
|
/*--------------------------------------------------------------*/
|
||||||
/* Flags and offset address */
|
/* Flags and Offset Address */
|
||||||
|
/*--------------------------------------------------------------*/
|
||||||
|
|
||||||
/* File access mode and open method flags (3rd argument of f_open) */
|
/* File access mode and open method flags (3rd argument of f_open) */
|
||||||
#define FA_READ 0x01
|
#define FA_READ 0x01
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*---------------------------------------------------------------------------/
|
/*---------------------------------------------------------------------------/
|
||||||
/ FatFs Functional Configurations
|
/ Configurations of FatFs Module
|
||||||
/---------------------------------------------------------------------------*/
|
/---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#define FFCONF_DEF 86631 /* Revision ID */
|
#define FFCONF_DEF 80286 /* Revision ID */
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------/
|
/*---------------------------------------------------------------------------/
|
||||||
/ Function Configurations
|
/ Function Configurations
|
||||||
|
@ -57,9 +57,9 @@
|
||||||
|
|
||||||
|
|
||||||
#define FF_USE_STRFUNC 0
|
#define FF_USE_STRFUNC 0
|
||||||
#define FF_PRINT_LLI 0
|
#define FF_PRINT_LLI 1
|
||||||
#define FF_PRINT_FLOAT 0
|
#define FF_PRINT_FLOAT 1
|
||||||
#define FF_STRF_ENCODE 0
|
#define FF_STRF_ENCODE 3
|
||||||
/* FF_USE_STRFUNC switches string functions, f_gets(), f_putc(), f_puts() and
|
/* FF_USE_STRFUNC switches string functions, f_gets(), f_putc(), f_puts() and
|
||||||
/ f_printf().
|
/ f_printf().
|
||||||
/
|
/
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
/ 2: Enable with LF-CRLF conversion.
|
/ 2: Enable with LF-CRLF conversion.
|
||||||
/
|
/
|
||||||
/ FF_PRINT_LLI = 1 makes f_printf() support long long argument and FF_PRINT_FLOAT = 1/2
|
/ FF_PRINT_LLI = 1 makes f_printf() support long long argument and FF_PRINT_FLOAT = 1/2
|
||||||
makes f_printf() support floating point argument. These features want C99 or later.
|
/ makes f_printf() support floating point argument. These features want C99 or later.
|
||||||
/ When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character
|
/ When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character
|
||||||
/ encoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE
|
/ encoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE
|
||||||
/ to be read/written via those functions.
|
/ to be read/written via those functions.
|
||||||
|
@ -178,7 +178,7 @@
|
||||||
/ logical drives. Number of items must not be less than FF_VOLUMES. Valid
|
/ logical drives. Number of items must not be less than FF_VOLUMES. Valid
|
||||||
/ characters for the volume ID strings are A-Z, a-z and 0-9, however, they are
|
/ characters for the volume ID strings are A-Z, a-z and 0-9, however, they are
|
||||||
/ compared in case-insensitive. If FF_STR_VOLUME_ID >= 1 and FF_VOLUME_STRS is
|
/ compared in case-insensitive. If FF_STR_VOLUME_ID >= 1 and FF_VOLUME_STRS is
|
||||||
/ not defined, a user defined volume string table needs to be defined as:
|
/ not defined, a user defined volume string table is needed as:
|
||||||
/
|
/
|
||||||
/ const char* VolumeStr[FF_VOLUMES] = {"ram","flash","sd","usb",...
|
/ const char* VolumeStr[FF_VOLUMES] = {"ram","flash","sd","usb",...
|
||||||
*/
|
*/
|
||||||
|
@ -190,7 +190,7 @@
|
||||||
/ number and only an FAT volume found on the physical drive will be mounted.
|
/ number and only an FAT volume found on the physical drive will be mounted.
|
||||||
/ When this function is enabled (1), each logical drive number can be bound to
|
/ When this function is enabled (1), each logical drive number can be bound to
|
||||||
/ arbitrary physical drive and partition listed in the VolToPart[]. Also f_fdisk()
|
/ arbitrary physical drive and partition listed in the VolToPart[]. Also f_fdisk()
|
||||||
/ funciton will be available. */
|
/ function will be available. */
|
||||||
|
|
||||||
|
|
||||||
#define FF_MIN_SS 512
|
#define FF_MIN_SS 512
|
||||||
|
@ -240,10 +240,10 @@
|
||||||
#define FF_FS_NORTC 1
|
#define FF_FS_NORTC 1
|
||||||
#define FF_NORTC_MON 1
|
#define FF_NORTC_MON 1
|
||||||
#define FF_NORTC_MDAY 1
|
#define FF_NORTC_MDAY 1
|
||||||
#define FF_NORTC_YEAR 2021
|
#define FF_NORTC_YEAR 2023
|
||||||
/* The option FF_FS_NORTC switches timestamp functiton. If the system does not have
|
/* The option FF_FS_NORTC switches timestamp feature. If the system does not have
|
||||||
/ any RTC function or valid timestamp is not needed, set FF_FS_NORTC = 1 to disable
|
/ an RTC or valid timestamp is not needed, set FF_FS_NORTC = 1 to disable the
|
||||||
/ the timestamp function. Every object modified by FatFs will have a fixed timestamp
|
/ timestamp feature. Every object modified by FatFs will have a fixed timestamp
|
||||||
/ defined by FF_NORTC_MON, FF_NORTC_MDAY and FF_NORTC_YEAR in local time.
|
/ defined by FF_NORTC_MON, FF_NORTC_MDAY and FF_NORTC_YEAR in local time.
|
||||||
/ To enable timestamp function (FF_FS_NORTC = 0), get_fattime() function need to be
|
/ To enable timestamp function (FF_FS_NORTC = 0), get_fattime() function need to be
|
||||||
/ added to the project to read current time form real-time clock. FF_NORTC_MON,
|
/ added to the project to read current time form real-time clock. FF_NORTC_MON,
|
||||||
|
@ -253,7 +253,7 @@
|
||||||
|
|
||||||
#define FF_FS_NOFSINFO 0
|
#define FF_FS_NOFSINFO 0
|
||||||
/* If you need to know correct free space on the FAT32 volume, set bit 0 of this
|
/* If you need to know correct free space on the FAT32 volume, set bit 0 of this
|
||||||
/ option, and f_getfree() function at first time after volume mount will force
|
/ option, and f_getfree() function at the first time after volume mount will force
|
||||||
/ a full FAT scan. Bit 1 controls the use of last allocated cluster number.
|
/ a full FAT scan. Bit 1 controls the use of last allocated cluster number.
|
||||||
/
|
/
|
||||||
/ bit0=0: Use free cluster count in the FSINFO if available.
|
/ bit0=0: Use free cluster count in the FSINFO if available.
|
||||||
|
@ -275,26 +275,21 @@
|
||||||
/ lock control is independent of re-entrancy. */
|
/ lock control is independent of re-entrancy. */
|
||||||
|
|
||||||
|
|
||||||
/* #include <somertos.h> // O/S definitions */
|
|
||||||
#define FF_FS_REENTRANT 0
|
#define FF_FS_REENTRANT 0
|
||||||
#define FF_FS_TIMEOUT 1000
|
#define FF_FS_TIMEOUT 1000
|
||||||
#define FF_SYNC_t HANDLE
|
|
||||||
/* The option FF_FS_REENTRANT switches the re-entrancy (thread safe) of the FatFs
|
/* The option FF_FS_REENTRANT switches the re-entrancy (thread safe) of the FatFs
|
||||||
/ module itself. Note that regardless of this option, file access to different
|
/ module itself. Note that regardless of this option, file access to different
|
||||||
/ volume is always re-entrant and volume control functions, f_mount(), f_mkfs()
|
/ volume is always re-entrant and volume control functions, f_mount(), f_mkfs()
|
||||||
/ and f_fdisk() function, are always not re-entrant. Only file/directory access
|
/ and f_fdisk() function, are always not re-entrant. Only file/directory access
|
||||||
/ to the same volume is under control of this function.
|
/ to the same volume is under control of this featuer.
|
||||||
/
|
/
|
||||||
/ 0: Disable re-entrancy. FF_FS_TIMEOUT and FF_SYNC_t have no effect.
|
/ 0: Disable re-entrancy. FF_FS_TIMEOUT have no effect.
|
||||||
/ 1: Enable re-entrancy. Also user provided synchronization handlers,
|
/ 1: Enable re-entrancy. Also user provided synchronization handlers,
|
||||||
/ ff_req_grant(), ff_rel_grant(), ff_del_syncobj() and ff_cre_syncobj()
|
/ ff_mutex_create(), ff_mutex_delete(), ff_mutex_take() and ff_mutex_give()
|
||||||
/ function, must be added to the project. Samples are available in
|
/ function, must be added to the project. Samples are available in ffsystem.c.
|
||||||
/ option/syscall.c.
|
|
||||||
/
|
/
|
||||||
/ The FF_FS_TIMEOUT defines timeout period in unit of time tick.
|
/ The FF_FS_TIMEOUT defines timeout period in unit of O/S time tick.
|
||||||
/ The FF_SYNC_t defines O/S dependent sync object type. e.g. HANDLE, ID, OS_EVENT*,
|
*/
|
||||||
/ SemaphoreHandle_t and etc. A header file for O/S definitions needs to be
|
|
||||||
/ included somewhere in the scope of ff.h. */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 014c925c2460095f602947e7a7bbfc5a890728d2
|
Subproject commit 8c2e51703d3e4f987b8857052b4da4bde12a6333
|
|
@ -24,22 +24,16 @@
|
||||||
/* Global variables. */
|
/* Global variables. */
|
||||||
|
|
||||||
static Mutex g_umsMutex = 0;
|
static Mutex g_umsMutex = 0;
|
||||||
static bool g_umsInterfaceInit = false;
|
static bool g_umsInterfaceInit = false, g_umsDeviceInfoUpdated = false;
|
||||||
|
|
||||||
static Thread g_umsDetectionThread = {0};
|
|
||||||
static UEvent *g_umsStatusChangeEvent = NULL, g_umsDetectionThreadExitEvent = {0};
|
|
||||||
static bool g_umsDetectionThreadCreated = false, g_umsDeviceInfoUpdated = false;
|
|
||||||
|
|
||||||
static u32 g_umsDeviceCount = 0;
|
static u32 g_umsDeviceCount = 0;
|
||||||
static UsbHsFsDevice *g_umsDevices = NULL;
|
static UsbHsFsDevice *g_umsDevices = NULL;
|
||||||
|
|
||||||
/* Function prototypes. */
|
/* Function prototypes. */
|
||||||
|
|
||||||
static bool umsCreateDetectionThread(void);
|
|
||||||
static void umsDestroyDetectionThread(void);
|
|
||||||
static void umsDetectionThreadFunc(void *arg);
|
|
||||||
|
|
||||||
static void umsFreeDeviceData(void);
|
static void umsFreeDeviceData(void);
|
||||||
|
static void umsPopulateCallback(const UsbHsFsDevice *devices, u32 device_count, void *user_data);
|
||||||
|
static bool umsDuplicateDeviceArray(const UsbHsFsDevice *in_devices, u32 in_device_count, UsbHsFsDevice **out_devices, u32 *out_device_count);
|
||||||
|
|
||||||
bool umsInitialize(void)
|
bool umsInitialize(void)
|
||||||
{
|
{
|
||||||
|
@ -50,6 +44,9 @@ bool umsInitialize(void)
|
||||||
ret = g_umsInterfaceInit;
|
ret = g_umsInterfaceInit;
|
||||||
if (ret) break;
|
if (ret) break;
|
||||||
|
|
||||||
|
/* Set populate callback function. */
|
||||||
|
usbHsFsSetPopulateCallback(&umsPopulateCallback, NULL);
|
||||||
|
|
||||||
/* Initialize USB Mass Storage Host interface. */
|
/* Initialize USB Mass Storage Host interface. */
|
||||||
Result rc = usbHsFsInitialize(0);
|
Result rc = usbHsFsInitialize(0);
|
||||||
if (R_FAILED(rc))
|
if (R_FAILED(rc))
|
||||||
|
@ -58,15 +55,6 @@ bool umsInitialize(void)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get USB Mass Storage status change event. */
|
|
||||||
g_umsStatusChangeEvent = usbHsFsGetStatusChangeUserEvent();
|
|
||||||
|
|
||||||
/* Create user-mode exit event. */
|
|
||||||
ueventCreate(&g_umsDetectionThreadExitEvent, true);
|
|
||||||
|
|
||||||
/* Create USB Mass Storage detection thread. */
|
|
||||||
if (!(g_umsDetectionThreadCreated = umsCreateDetectionThread())) break;
|
|
||||||
|
|
||||||
/* Update flags. */
|
/* Update flags. */
|
||||||
ret = g_umsInterfaceInit = true;
|
ret = g_umsInterfaceInit = true;
|
||||||
}
|
}
|
||||||
|
@ -78,18 +66,14 @@ void umsExit(void)
|
||||||
{
|
{
|
||||||
SCOPED_LOCK(&g_umsMutex)
|
SCOPED_LOCK(&g_umsMutex)
|
||||||
{
|
{
|
||||||
/* Destroy USB Mass Storage detection thread. */
|
|
||||||
if (g_umsDetectionThreadCreated)
|
|
||||||
{
|
|
||||||
umsDestroyDetectionThread();
|
|
||||||
g_umsDetectionThreadCreated = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Close USB Mass Storage Host interface. */
|
/* Close USB Mass Storage Host interface. */
|
||||||
usbHsFsExit();
|
usbHsFsExit();
|
||||||
|
|
||||||
/* Update flag. */
|
/* Free USB Mass Storage device data. */
|
||||||
g_umsInterfaceInit = false;
|
umsFreeDeviceData();
|
||||||
|
|
||||||
|
/* Update flags. */
|
||||||
|
g_umsInterfaceInit = g_umsDeviceInfoUpdated = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,8 +83,7 @@ bool umsIsDeviceInfoUpdated(void)
|
||||||
|
|
||||||
SCOPED_TRY_LOCK(&g_umsMutex)
|
SCOPED_TRY_LOCK(&g_umsMutex)
|
||||||
{
|
{
|
||||||
if (!g_umsInterfaceInit || !g_umsDeviceInfoUpdated) break;
|
ret = (g_umsInterfaceInit && g_umsDeviceInfoUpdated);
|
||||||
ret = true;
|
|
||||||
g_umsDeviceInfoUpdated = false;
|
g_umsDeviceInfoUpdated = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,125 +102,13 @@ UsbHsFsDevice *umsGetDevices(u32 *out_count)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!g_umsDeviceCount || !g_umsDevices)
|
/* Duplicate device data. */
|
||||||
{
|
if (!umsDuplicateDeviceArray(g_umsDevices, g_umsDeviceCount, &devices, out_count)) LOG_MSG_ERROR("Failed to duplicate USB Mass Storage device data!");
|
||||||
/* Update output device count. */
|
|
||||||
*out_count = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Allocate memory for the output devices. */
|
|
||||||
devices = calloc(g_umsDeviceCount, sizeof(UsbHsFsDevice));
|
|
||||||
if (!devices)
|
|
||||||
{
|
|
||||||
LOG_MSG_ERROR("Failed to allocate memory for %u devices!", g_umsDeviceCount);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Copy device data. */
|
|
||||||
memcpy(devices, g_umsDevices, g_umsDeviceCount * sizeof(UsbHsFsDevice));
|
|
||||||
|
|
||||||
/* Update output device count. */
|
|
||||||
*out_count = g_umsDeviceCount;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return devices;
|
return devices;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool umsCreateDetectionThread(void)
|
|
||||||
{
|
|
||||||
if (!utilsCreateThread(&g_umsDetectionThread, umsDetectionThreadFunc, NULL, 1))
|
|
||||||
{
|
|
||||||
LOG_MSG_ERROR("Failed to create USB Mass Storage detection thread!");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void umsDestroyDetectionThread(void)
|
|
||||||
{
|
|
||||||
/* Signal the exit event to terminate the USB Mass Storage detection thread. */
|
|
||||||
ueventSignal(&g_umsDetectionThreadExitEvent);
|
|
||||||
|
|
||||||
/* Wait for the USB Mass Storage detection thread to exit. */
|
|
||||||
utilsJoinThread(&g_umsDetectionThread);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void umsDetectionThreadFunc(void *arg)
|
|
||||||
{
|
|
||||||
(void)arg;
|
|
||||||
|
|
||||||
Result rc = 0;
|
|
||||||
int idx = 0;
|
|
||||||
u32 listed_device_count = 0;
|
|
||||||
|
|
||||||
Waiter status_change_event_waiter = waiterForUEvent(g_umsStatusChangeEvent);
|
|
||||||
Waiter exit_event_waiter = waiterForUEvent(&g_umsDetectionThreadExitEvent);
|
|
||||||
|
|
||||||
while(true)
|
|
||||||
{
|
|
||||||
/* Wait until an event is triggered. */
|
|
||||||
rc = waitMulti(&idx, -1, status_change_event_waiter, exit_event_waiter);
|
|
||||||
if (R_FAILED(rc)) continue;
|
|
||||||
|
|
||||||
/* Exit event triggered. */
|
|
||||||
if (idx == 1) break;
|
|
||||||
|
|
||||||
SCOPED_LOCK(&g_umsMutex)
|
|
||||||
{
|
|
||||||
/* Free USB Mass Storage device data. */
|
|
||||||
umsFreeDeviceData();
|
|
||||||
|
|
||||||
/* Get mounted device count. */
|
|
||||||
g_umsDeviceCount = usbHsFsGetMountedDeviceCount();
|
|
||||||
LOG_MSG_INFO("USB Mass Storage status change event triggered! Mounted USB Mass Storage device count: %u.", g_umsDeviceCount);
|
|
||||||
|
|
||||||
if (g_umsDeviceCount)
|
|
||||||
{
|
|
||||||
bool fail = false;
|
|
||||||
|
|
||||||
/* Allocate mounted devices buffer. */
|
|
||||||
g_umsDevices = calloc(g_umsDeviceCount, sizeof(UsbHsFsDevice));
|
|
||||||
if (g_umsDevices)
|
|
||||||
{
|
|
||||||
/* List mounted devices. */
|
|
||||||
listed_device_count = usbHsFsListMountedDevices(g_umsDevices, g_umsDeviceCount);
|
|
||||||
if (listed_device_count)
|
|
||||||
{
|
|
||||||
/* Check if we got as many devices as we expected. */
|
|
||||||
if (listed_device_count == g_umsDeviceCount)
|
|
||||||
{
|
|
||||||
/* Update USB Mass Storage device info updated flag. */
|
|
||||||
g_umsDeviceInfoUpdated = true;
|
|
||||||
} else {
|
|
||||||
LOG_MSG_ERROR("USB Mass Storage device count mismatch! (%u != %u).", listed_device_count, g_umsDeviceCount);
|
|
||||||
fail = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
LOG_MSG_ERROR("Failed to list mounted USB Mass Storage devices!");
|
|
||||||
fail = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
LOG_MSG_ERROR("Failed to allocate memory for mounted USB Mass Storage devices buffer!");
|
|
||||||
fail = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Free USB Mass Storage device data if something went wrong. */
|
|
||||||
if (fail) umsFreeDeviceData();
|
|
||||||
} else {
|
|
||||||
/* Update USB Mass Storage device info updated flag. */
|
|
||||||
g_umsDeviceInfoUpdated = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Free USB Mass Storage device data. */
|
|
||||||
umsFreeDeviceData();
|
|
||||||
|
|
||||||
threadExit();
|
|
||||||
}
|
|
||||||
|
|
||||||
static void umsFreeDeviceData(void)
|
static void umsFreeDeviceData(void)
|
||||||
{
|
{
|
||||||
/* Free devices buffer. */
|
/* Free devices buffer. */
|
||||||
|
@ -250,3 +121,69 @@ static void umsFreeDeviceData(void)
|
||||||
/* Reset device count. */
|
/* Reset device count. */
|
||||||
g_umsDeviceCount = 0;
|
g_umsDeviceCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void umsPopulateCallback(const UsbHsFsDevice *devices, u32 device_count, void *user_data)
|
||||||
|
{
|
||||||
|
(void)user_data;
|
||||||
|
|
||||||
|
SCOPED_LOCK(&g_umsMutex)
|
||||||
|
{
|
||||||
|
/* Free USB Mass Storage device data. */
|
||||||
|
umsFreeDeviceData();
|
||||||
|
|
||||||
|
LOG_MSG_INFO("Mounted USB Mass Storage device count: %u.", device_count);
|
||||||
|
|
||||||
|
if (devices && device_count)
|
||||||
|
{
|
||||||
|
/* Duplicate device data. */
|
||||||
|
if (!umsDuplicateDeviceArray(devices, device_count, &g_umsDevices, &g_umsDeviceCount)) LOG_MSG_ERROR("Failed to duplicate USB Mass Storage device data!");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Update USB Mass Storage device info updated flag. */
|
||||||
|
g_umsDeviceInfoUpdated = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool umsDuplicateDeviceArray(const UsbHsFsDevice *in_devices, u32 in_device_count, UsbHsFsDevice **out_devices, u32 *out_device_count)
|
||||||
|
{
|
||||||
|
if (!out_devices || !out_device_count)
|
||||||
|
{
|
||||||
|
LOG_MSG_ERROR("Invalid parameters!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
UsbHsFsDevice *tmp_devices = NULL;
|
||||||
|
bool ret = false;
|
||||||
|
|
||||||
|
/* Clear output. */
|
||||||
|
*out_devices = NULL;
|
||||||
|
*out_device_count = 0;
|
||||||
|
|
||||||
|
/* Short-circuit. */
|
||||||
|
if (!in_devices || !in_device_count)
|
||||||
|
{
|
||||||
|
ret = true;
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Duplicate input array. */
|
||||||
|
tmp_devices = calloc(in_device_count, sizeof(UsbHsFsDevice));
|
||||||
|
if (!tmp_devices)
|
||||||
|
{
|
||||||
|
LOG_MSG_ERROR("Failed to allocate memory for %u devices!", in_device_count);
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Copy device data. */
|
||||||
|
memcpy(tmp_devices, in_devices, in_device_count * sizeof(UsbHsFsDevice));
|
||||||
|
|
||||||
|
/* Update output. */
|
||||||
|
*out_devices = tmp_devices;
|
||||||
|
*out_device_count = in_device_count;
|
||||||
|
|
||||||
|
/* Update return value. */
|
||||||
|
ret = true;
|
||||||
|
|
||||||
|
end:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,166 +1,221 @@
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Sample Code of OS Dependent Functions for FatFs */
|
/* A Sample Code of User Provided OS Dependent Functions for FatFs */
|
||||||
/* (C)ChaN, 2018 */
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include "ff.h"
|
#include "ff.h"
|
||||||
|
|
||||||
#if FF_USE_LFN == 3 /* Dynamic memory allocation */
|
|
||||||
|
#if FF_USE_LFN == 3 /* Use dynamic memory allocation */
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Allocate a memory block */
|
/* Allocate/Free a Memory Block */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include <stdlib.h> /* with POSIX API */
|
||||||
|
|
||||||
|
|
||||||
void* ff_memalloc ( /* Returns pointer to the allocated memory block (null if not enough core) */
|
void* ff_memalloc ( /* Returns pointer to the allocated memory block (null if not enough core) */
|
||||||
UINT msize /* Number of bytes to allocate */
|
UINT msize /* Number of bytes to allocate */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return malloc(msize); /* Allocate a new memory block with POSIX API */
|
return malloc((size_t)msize); /* Allocate a new memory block */
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
|
||||||
/* Free a memory block */
|
|
||||||
/*------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
void ff_memfree (
|
void ff_memfree (
|
||||||
void* mblock /* Pointer to the memory block to free (nothing to do if null) */
|
void* mblock /* Pointer to the memory block to free (no effect if null) */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
free(mblock); /* Free the memory block with POSIX API */
|
free(mblock); /* Free the memory block */
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if FF_FS_REENTRANT /* Mutal exclusion */
|
#if FF_FS_REENTRANT /* Mutal exclusion */
|
||||||
|
/*------------------------------------------------------------------------*/
|
||||||
|
/* Definitions of Mutex */
|
||||||
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#define OS_TYPE 5 /* 0:Win32, 1:uITRON4.0, 2:uC/OS-II, 3:FreeRTOS, 4:CMSIS-RTOS */
|
||||||
|
|
||||||
|
|
||||||
|
#if OS_TYPE == 0 /* Win32 */
|
||||||
|
#include <windows.h>
|
||||||
|
static HANDLE Mutex[FF_VOLUMES + 1]; /* Table of mutex handle */
|
||||||
|
|
||||||
|
#elif OS_TYPE == 1 /* uITRON */
|
||||||
|
#include "itron.h"
|
||||||
|
#include "kernel.h"
|
||||||
|
static mtxid Mutex[FF_VOLUMES + 1]; /* Table of mutex ID */
|
||||||
|
|
||||||
|
#elif OS_TYPE == 2 /* uc/OS-II */
|
||||||
|
#include "includes.h"
|
||||||
|
static OS_EVENT *Mutex[FF_VOLUMES + 1]; /* Table of mutex pinter */
|
||||||
|
|
||||||
|
#elif OS_TYPE == 3 /* FreeRTOS */
|
||||||
|
#include "FreeRTOS.h"
|
||||||
|
#include "semphr.h"
|
||||||
|
static SemaphoreHandle_t Mutex[FF_VOLUMES + 1]; /* Table of mutex handle */
|
||||||
|
|
||||||
|
#elif OS_TYPE == 4 /* CMSIS-RTOS */
|
||||||
|
#include "cmsis_os.h"
|
||||||
|
static osMutexId Mutex[FF_VOLUMES + 1]; /* Table of mutex ID */
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Create a Synchronization Object */
|
/* Create a Mutex */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* This function is called in f_mount() function to create a new
|
/* This function is called in f_mount function to create a new mutex
|
||||||
/ synchronization object for the volume, such as semaphore and mutex.
|
/ or semaphore for the volume. When a 0 is returned, the f_mount function
|
||||||
/ When a 0 is returned, the f_mount() function fails with FR_INT_ERR.
|
/ fails with FR_INT_ERR.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//const osMutexDef_t Mutex[FF_VOLUMES]; /* Table of CMSIS-RTOS mutex */
|
int ff_mutex_create ( /* Returns 1:Function succeeded or 0:Could not create the mutex */
|
||||||
|
int vol /* Mutex ID: Volume mutex (0 to FF_VOLUMES - 1) or system mutex (FF_VOLUMES) */
|
||||||
|
|
||||||
int ff_cre_syncobj ( /* 1:Function succeeded, 0:Could not create the sync object */
|
|
||||||
BYTE vol, /* Corresponding volume (logical drive number) */
|
|
||||||
FF_SYNC_t* sobj /* Pointer to return the created sync object */
|
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* Win32 */
|
#if OS_TYPE == 0 /* Win32 */
|
||||||
*sobj = CreateMutex(NULL, FALSE, NULL);
|
Mutex[vol] = CreateMutex(NULL, FALSE, NULL);
|
||||||
return (int)(*sobj != INVALID_HANDLE_VALUE);
|
return (int)(Mutex[vol] != INVALID_HANDLE_VALUE);
|
||||||
|
|
||||||
/* uITRON */
|
#elif OS_TYPE == 1 /* uITRON */
|
||||||
// T_CSEM csem = {TA_TPRI,1,1};
|
T_CMTX cmtx = {TA_TPRI,1};
|
||||||
// *sobj = acre_sem(&csem);
|
|
||||||
// return (int)(*sobj > 0);
|
|
||||||
|
|
||||||
/* uC/OS-II */
|
Mutex[vol] = acre_mtx(&cmtx);
|
||||||
// OS_ERR err;
|
return (int)(Mutex[vol] > 0);
|
||||||
// *sobj = OSMutexCreate(0, &err);
|
|
||||||
// return (int)(err == OS_NO_ERR);
|
|
||||||
|
|
||||||
/* FreeRTOS */
|
#elif OS_TYPE == 2 /* uC/OS-II */
|
||||||
// *sobj = xSemaphoreCreateMutex();
|
OS_ERR err;
|
||||||
// return (int)(*sobj != NULL);
|
|
||||||
|
|
||||||
/* CMSIS-RTOS */
|
Mutex[vol] = OSMutexCreate(0, &err);
|
||||||
// *sobj = osMutexCreate(&Mutex[vol]);
|
return (int)(err == OS_NO_ERR);
|
||||||
// return (int)(*sobj != NULL);
|
|
||||||
|
#elif OS_TYPE == 3 /* FreeRTOS */
|
||||||
|
Mutex[vol] = xSemaphoreCreateMutex();
|
||||||
|
return (int)(Mutex[vol] != NULL);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 4 /* CMSIS-RTOS */
|
||||||
|
osMutexDef(cmsis_os_mutex);
|
||||||
|
|
||||||
|
Mutex[vol] = osMutexCreate(osMutex(cmsis_os_mutex));
|
||||||
|
return (int)(Mutex[vol] != NULL);
|
||||||
|
|
||||||
|
#else
|
||||||
|
(void)vol;
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Delete a Synchronization Object */
|
/* Delete a Mutex */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* This function is called in f_mount() function to delete a synchronization
|
/* This function is called in f_mount function to delete a mutex or
|
||||||
/ object that created with ff_cre_syncobj() function. When a 0 is returned,
|
/ semaphore of the volume created with ff_mutex_create function.
|
||||||
/ the f_mount() function fails with FR_INT_ERR.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int ff_del_syncobj ( /* 1:Function succeeded, 0:Could not delete due to an error */
|
void ff_mutex_delete ( /* Returns 1:Function succeeded or 0:Could not delete due to an error */
|
||||||
FF_SYNC_t sobj /* Sync object tied to the logical drive to be deleted */
|
int vol /* Mutex ID: Volume mutex (0 to FF_VOLUMES - 1) or system mutex (FF_VOLUMES) */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* Win32 */
|
#if OS_TYPE == 0 /* Win32 */
|
||||||
return (int)CloseHandle(sobj);
|
CloseHandle(Mutex[vol]);
|
||||||
|
|
||||||
/* uITRON */
|
#elif OS_TYPE == 1 /* uITRON */
|
||||||
// return (int)(del_sem(sobj) == E_OK);
|
del_mtx(Mutex[vol]);
|
||||||
|
|
||||||
/* uC/OS-II */
|
#elif OS_TYPE == 2 /* uC/OS-II */
|
||||||
// OS_ERR err;
|
OS_ERR err;
|
||||||
// OSMutexDel(sobj, OS_DEL_ALWAYS, &err);
|
|
||||||
// return (int)(err == OS_NO_ERR);
|
|
||||||
|
|
||||||
/* FreeRTOS */
|
OSMutexDel(Mutex[vol], OS_DEL_ALWAYS, &err);
|
||||||
// vSemaphoreDelete(sobj);
|
|
||||||
// return 1;
|
|
||||||
|
|
||||||
/* CMSIS-RTOS */
|
#elif OS_TYPE == 3 /* FreeRTOS */
|
||||||
// return (int)(osMutexDelete(sobj) == osOK);
|
vSemaphoreDelete(Mutex[vol]);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 4 /* CMSIS-RTOS */
|
||||||
|
osMutexDelete(Mutex[vol]);
|
||||||
|
|
||||||
|
#else
|
||||||
|
(void)vol;
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Request Grant to Access the Volume */
|
/* Request a Grant to Access the Volume */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* This function is called on entering file functions to lock the volume.
|
/* This function is called on enter file functions to lock the volume.
|
||||||
/ When a 0 is returned, the file function fails with FR_TIMEOUT.
|
/ When a 0 is returned, the file function fails with FR_TIMEOUT.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int ff_req_grant ( /* 1:Got a grant to access the volume, 0:Could not get a grant */
|
int ff_mutex_take ( /* Returns 1:Succeeded or 0:Timeout */
|
||||||
FF_SYNC_t sobj /* Sync object to wait */
|
int vol /* Mutex ID: Volume mutex (0 to FF_VOLUMES - 1) or system mutex (FF_VOLUMES) */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* Win32 */
|
#if OS_TYPE == 0 /* Win32 */
|
||||||
return (int)(WaitForSingleObject(sobj, FF_FS_TIMEOUT) == WAIT_OBJECT_0);
|
return (int)(WaitForSingleObject(Mutex[vol], FF_FS_TIMEOUT) == WAIT_OBJECT_0);
|
||||||
|
|
||||||
/* uITRON */
|
#elif OS_TYPE == 1 /* uITRON */
|
||||||
// return (int)(wai_sem(sobj) == E_OK);
|
return (int)(tloc_mtx(Mutex[vol], FF_FS_TIMEOUT) == E_OK);
|
||||||
|
|
||||||
/* uC/OS-II */
|
#elif OS_TYPE == 2 /* uC/OS-II */
|
||||||
// OS_ERR err;
|
OS_ERR err;
|
||||||
// OSMutexPend(sobj, FF_FS_TIMEOUT, &err));
|
|
||||||
// return (int)(err == OS_NO_ERR);
|
|
||||||
|
|
||||||
/* FreeRTOS */
|
OSMutexPend(Mutex[vol], FF_FS_TIMEOUT, &err));
|
||||||
// return (int)(xSemaphoreTake(sobj, FF_FS_TIMEOUT) == pdTRUE);
|
return (int)(err == OS_NO_ERR);
|
||||||
|
|
||||||
/* CMSIS-RTOS */
|
#elif OS_TYPE == 3 /* FreeRTOS */
|
||||||
// return (int)(osMutexWait(sobj, FF_FS_TIMEOUT) == osOK);
|
return (int)(xSemaphoreTake(Mutex[vol], FF_FS_TIMEOUT) == pdTRUE);
|
||||||
}
|
|
||||||
|
|
||||||
|
#elif OS_TYPE == 4 /* CMSIS-RTOS */
|
||||||
|
return (int)(osMutexWait(Mutex[vol], FF_FS_TIMEOUT) == osOK);
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
#else
|
||||||
/* Release Grant to Access the Volume */
|
(void)vol;
|
||||||
/*------------------------------------------------------------------------*/
|
return 0;
|
||||||
/* This function is called on leaving file functions to unlock the volume.
|
|
||||||
*/
|
|
||||||
|
|
||||||
void ff_rel_grant (
|
|
||||||
FF_SYNC_t sobj /* Sync object to be signaled */
|
|
||||||
)
|
|
||||||
{
|
|
||||||
/* Win32 */
|
|
||||||
ReleaseMutex(sobj);
|
|
||||||
|
|
||||||
/* uITRON */
|
|
||||||
// sig_sem(sobj);
|
|
||||||
|
|
||||||
/* uC/OS-II */
|
|
||||||
// OSMutexPost(sobj);
|
|
||||||
|
|
||||||
/* FreeRTOS */
|
|
||||||
// xSemaphoreGive(sobj);
|
|
||||||
|
|
||||||
/* CMSIS-RTOS */
|
|
||||||
// osMutexRelease(sobj);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------*/
|
||||||
|
/* Release a Grant to Access the Volume */
|
||||||
|
/*------------------------------------------------------------------------*/
|
||||||
|
/* This function is called on leave file functions to unlock the volume.
|
||||||
|
*/
|
||||||
|
|
||||||
|
void ff_mutex_give (
|
||||||
|
int vol /* Mutex ID: Volume mutex (0 to FF_VOLUMES - 1) or system mutex (FF_VOLUMES) */
|
||||||
|
)
|
||||||
|
{
|
||||||
|
#if OS_TYPE == 0 /* Win32 */
|
||||||
|
ReleaseMutex(Mutex[vol]);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 1 /* uITRON */
|
||||||
|
unl_mtx(Mutex[vol]);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 2 /* uC/OS-II */
|
||||||
|
OSMutexPost(Mutex[vol]);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 3 /* FreeRTOS */
|
||||||
|
xSemaphoreGive(Mutex[vol]);
|
||||||
|
|
||||||
|
#elif OS_TYPE == 4 /* CMSIS-RTOS */
|
||||||
|
osMutexRelease(Mutex[vol]);
|
||||||
|
|
||||||
|
#else
|
||||||
|
(void)vol;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* FF_FS_REENTRANT */
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Unicode handling functions for FatFs R0.13+ */
|
/* Unicode Handling Functions for FatFs R0.13 and Later */
|
||||||
|
/*------------------------------------------------------------------------*/
|
||||||
|
/* This module will occupy a huge memory in the .rodata section when the */
|
||||||
|
/* FatFs is configured for LFN with DBCS. If the system has a Unicode */
|
||||||
|
/* library for the code conversion, this module should be modified to use */
|
||||||
|
/* it to avoid silly memory consumption. */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* This module will occupy a huge memory in the .const section when the /
|
|
||||||
/ FatFs is configured for LFN with DBCS. If the system has any Unicode /
|
|
||||||
/ utilitiy for the code conversion, this module should be modified to use /
|
|
||||||
/ that function to avoid silly memory consumption. /
|
|
||||||
/-------------------------------------------------------------------------*/
|
|
||||||
/*
|
/*
|
||||||
/ Copyright (C) 2014, ChaN, all right reserved.
|
/ Copyright (C) 2022, ChaN, all right reserved.
|
||||||
/
|
/
|
||||||
/ FatFs module is an open source software. Redistribution and use of FatFs in
|
/ FatFs module is an open source software. Redistribution and use of FatFs in
|
||||||
/ source and binary forms, with or without modification, are permitted provided
|
/ source and binary forms, with or without modification, are permitted provided
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include "ff.h"
|
#include "ff.h"
|
||||||
|
|
||||||
#if FF_USE_LFN /* This module will be blanked if non-LFN configuration */
|
#if FF_USE_LFN != 0 /* This module will be blanked if in non-LFN configuration */
|
||||||
|
|
||||||
#define MERGE2(a, b) a ## b
|
#define MERGE2(a, b) a ## b
|
||||||
#define CVTBL(tbl, cp) MERGE2(tbl, cp)
|
#define CVTBL(tbl, cp) MERGE2(tbl, cp)
|
||||||
|
@ -15214,8 +15214,8 @@ static const WCHAR uc869[] = { /* CP869(Greek 2) to Unicode conversion table */
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* OEM <==> Unicode conversions for static code page configuration */
|
/* OEM <==> Unicode Conversions for Static Code Page Configuration with */
|
||||||
/* SBCS fixed code page */
|
/* SBCS Fixed Code Page */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#if FF_CODE_PAGE != 0 && FF_CODE_PAGE < 900
|
#if FF_CODE_PAGE != 0 && FF_CODE_PAGE < 900
|
||||||
|
@ -15225,7 +15225,7 @@ WCHAR ff_uni2oem ( /* Returns OEM code character, zero on error */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
WCHAR c = 0;
|
WCHAR c = 0;
|
||||||
const WCHAR *p = CVTBL(uc, FF_CODE_PAGE);
|
const WCHAR* p = CVTBL(uc, FF_CODE_PAGE);
|
||||||
|
|
||||||
|
|
||||||
if (uni < 0x80) { /* ASCII? */
|
if (uni < 0x80) { /* ASCII? */
|
||||||
|
@ -15247,7 +15247,7 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
WCHAR c = 0;
|
WCHAR c = 0;
|
||||||
const WCHAR *p = CVTBL(uc, FF_CODE_PAGE);
|
const WCHAR* p = CVTBL(uc, FF_CODE_PAGE);
|
||||||
|
|
||||||
|
|
||||||
if (oem < 0x80) { /* ASCII? */
|
if (oem < 0x80) { /* ASCII? */
|
||||||
|
@ -15267,8 +15267,8 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* OEM <==> Unicode conversions for static code page configuration */
|
/* OEM <==> Unicode Conversions for Static Code Page Configuration with */
|
||||||
/* DBCS fixed code page */
|
/* DBCS Fixed Code Page */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#if FF_CODE_PAGE >= 900
|
#if FF_CODE_PAGE >= 900
|
||||||
|
@ -15277,7 +15277,7 @@ WCHAR ff_uni2oem ( /* Returns OEM code character, zero on error */
|
||||||
WORD cp /* Code page for the conversion */
|
WORD cp /* Code page for the conversion */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const WCHAR *p;
|
const WCHAR* p;
|
||||||
WCHAR c = 0, uc;
|
WCHAR c = 0, uc;
|
||||||
UINT i = 0, n, li, hi;
|
UINT i = 0, n, li, hi;
|
||||||
|
|
||||||
|
@ -15313,7 +15313,7 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
WORD cp /* Code page for the conversion */
|
WORD cp /* Code page for the conversion */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const WCHAR *p;
|
const WCHAR* p;
|
||||||
WCHAR c = 0;
|
WCHAR c = 0;
|
||||||
UINT i = 0, n, li, hi;
|
UINT i = 0, n, li, hi;
|
||||||
|
|
||||||
|
@ -15346,7 +15346,7 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* OEM <==> Unicode conversions for dynamic code page configuration */
|
/* OEM <==> Unicode Conversions for Dynamic Code Page Configuration */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#if FF_CODE_PAGE == 0
|
#if FF_CODE_PAGE == 0
|
||||||
|
@ -15360,7 +15360,7 @@ WCHAR ff_uni2oem ( /* Returns OEM code character, zero on error */
|
||||||
WORD cp /* Code page for the conversion */
|
WORD cp /* Code page for the conversion */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const WCHAR *p;
|
const WCHAR* p;
|
||||||
WCHAR c = 0, uc;
|
WCHAR c = 0, uc;
|
||||||
UINT i, n, li, hi;
|
UINT i, n, li, hi;
|
||||||
|
|
||||||
|
@ -15412,7 +15412,7 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
WORD cp /* Code page for the conversion */
|
WORD cp /* Code page for the conversion */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const WCHAR *p;
|
const WCHAR* p;
|
||||||
WCHAR c = 0;
|
WCHAR c = 0;
|
||||||
UINT i, n, li, hi;
|
UINT i, n, li, hi;
|
||||||
|
|
||||||
|
@ -15458,14 +15458,14 @@ WCHAR ff_oem2uni ( /* Returns Unicode character in UTF-16, zero on error */
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
/* Unicode up-case conversion */
|
/* Unicode Up-case Conversion */
|
||||||
/*------------------------------------------------------------------------*/
|
/*------------------------------------------------------------------------*/
|
||||||
|
|
||||||
DWORD ff_wtoupper ( /* Returns up-converted code point */
|
DWORD ff_wtoupper ( /* Returns up-converted code point */
|
||||||
DWORD uni /* Unicode code point to be up-converted */
|
DWORD uni /* Unicode code point to be up-converted */
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const WORD *p;
|
const WORD* p;
|
||||||
WORD uc, bc, nc, cmd;
|
WORD uc, bc, nc, cmd;
|
||||||
static const WORD cvt1[] = { /* Compressed up conversion table for U+0000 - U+0FFF */
|
static const WORD cvt1[] = { /* Compressed up conversion table for U+0000 - U+0FFF */
|
||||||
/* Basic Latin */
|
/* Basic Latin */
|
||||||
|
@ -15590,4 +15590,4 @@ DWORD ff_wtoupper ( /* Returns up-converted code point */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* #if FF_USE_LFN */
|
#endif /* #if FF_USE_LFN != 0 */
|
||||||
|
|
Loading…
Reference in a new issue