[PRJ][APPS][USBH] Fix stack corruption due to inconsistent type of local variable in MSC_File_Operations()

This commit is contained in:
Kilani Akrich 2023-09-29 09:34:53 +01:00 committed by Tasnim
parent 9d229ff28e
commit 753bd3420a
6 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ uint8_t wtext[] = "USB Host Library : Mass Storage Example";
*/
void MSC_File_Operations(void)
{
uint16_t bytesread;
uint32_t bytesread;
LCD_UsrLog("INFO : FatFs Initialized \n");

View File

@ -40,7 +40,7 @@ uint8_t wtext [] = "USB Host Library : Mass Storage Example";
*/
void MSC_File_Operations(void)
{
uint16_t bytesread;
uint32_t bytesread;
/* Register the file system object to the FatFs module */
if(f_mount(&USBH_fatfs, "", 0) != FR_OK)

View File

@ -40,7 +40,7 @@ uint8_t wtext [] = "USB Host Library : Mass Storage Example";
*/
void MSC_File_Operations(void)
{
uint16_t bytesread;
uint32_t bytesread;
/* Register the file system object to the FatFs module */
if(f_mount(&USBH_fatfs, "", 0 ) != FR_OK )

View File

@ -192,7 +192,7 @@ static void COMMAND_ProgramFlashMemory(void)
{
uint32_t programcounter = 0x00;
uint8_t readflag = TRUE;
uint16_t bytesread;
uint32_t bytesread;
/* RAM Address Initialization */
RamAddress = (uint32_t) &RAM_Buf;

View File

@ -40,7 +40,7 @@ uint8_t wtext[] = "USB Host Library : Mass Storage Example";
*/
void MSC_File_Operations(void)
{
uint16_t bytesread;
uint32_t bytesread;
LCD_UsrLog("INFO : FatFs Initialized \n");

View File

@ -40,7 +40,7 @@ uint8_t wtext[] = "USB Host Library : Mass Storage Example";
*/
void MSC_File_Operations(void)
{
uint16_t bytesread;
uint32_t bytesread;
LCD_UsrLog("INFO : FatFs Initialized \n");