资源简介

该资源为以STM32H743为平台实现FATFS+512G SD卡实时存储的程序,用RTC的时间戳命名文件及文件夹。

资源截图

代码片段和文件信息

/*------------------------------------------------------------/
/ Open or create a file in append mode
/ (This function was sperseded by FA_OPEN_APPEND flag at FatFs R0.12a)
/------------------------------------------------------------*/

FRESULT open_append (
    FIL* fp            /* [OUT] File object to create */
    const char* path    /* [IN]  File name to be opened */

{
    FRESULT fr;

    /* Opens an existing file. If not exist creates a new file. */
    fr = f_open(fp path FA_WRITE | FA_OPEN_ALWAYS);
    if (fr == FR_OK) {
        /* Seek to end of the file to append data */
        fr = f_lseek(fp f_size(fp));
        if (fr != FR_OK)
            f_close(fp);
    }
    return fr;
}


int main (void)
{
    FRESULT fr;
    FATFS fs;
    FIL fil;

    /* Open or create a log file and ready to append */
    f_mount(&fs ““ 0);
    fr = open_append(&fil “logfile.txt“);
    if (fr != FR_OK) return 1;

    /* Append a line */
    f_printf(&fil “%02u/%02u/%u %2u:%02u\n“ Mday Mon Year Hour Min);

    /* Close the file */
    f_close(&fil);

    return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      25116  2018-01-03 22:30  FATFSH743\CORE\cmsis_armcc.h

     文件      52439  2018-01-03 22:30  FATFSH743\CORE\cmsis_armclang.h

     文件       5700  2018-01-03 22:30  FATFSH743\CORE\cmsis_compiler.h

     文件     144049  2018-01-03 22:30  FATFSH743\CORE\core_cm7.h

     文件      44986  2018-01-03 22:31  FATFSH743\CORE\startup_stm32h743xx.s

     文件       3665  2018-04-07 17:45  FATFSH743\FATFS\documents\css_e.css

     文件       1135  2018-04-07 17:45  FATFSH743\FATFS\documents\res\app1.c

     文件       1542  2018-04-07 17:45  FATFSH743\FATFS\documents\res\app2.c

     文件       4133  2018-04-07 17:45  FATFSH743\FATFS\documents\res\app3.c

     文件      10332  2018-04-07 17:45  FATFSH743\FATFS\documents\res\app4.c

     文件       1414  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f1.png

     文件       1458  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f2.png

     文件       1039  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f3.png

     文件       2335  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f4.png

     文件       2479  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f5.png

     文件       1464  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f6.png

     文件      25760  2018-04-07 17:45  FATFSH743\FATFS\documents\res\f7.png

     文件      22722  2018-04-07 17:45  FATFSH743\FATFS\documents\res\funcs.png

     文件       5521  2018-04-07 17:45  FATFSH743\FATFS\documents\res\layers.png

     文件       3843  2018-04-07 17:45  FATFSH743\FATFS\documents\res\layers1.png

     文件       3741  2018-04-07 17:45  FATFSH743\FATFS\documents\res\layers2.png

     文件       2379  2018-04-07 17:45  FATFSH743\FATFS\documents\res\layers3.png

     文件     686683  2018-04-07 17:45  FATFSH743\FATFS\documents\res\mkfatimg.zip

     文件    3238912  2018-04-07 17:45  FATFSH743\FATFS\documents\res\mkfs.xls

     文件      17469  2018-04-07 17:45  FATFSH743\FATFS\documents\res\modules.png

     文件      69114  2018-04-07 17:45  FATFSH743\FATFS\documents\res\rwtest1.png

     文件       8153  2018-04-07 17:45  FATFSH743\FATFS\documents\res\rwtest2.png

     文件       3011  2018-04-07 17:45  FATFSH743\FATFS\documents\res\rwtest3.png

     文件      10468  2018-04-07 17:45  FATFSH743\FATFS\documents\updates.txt

     文件      12332  2019-09-10 12:04  FATFSH743\FATFS\exfuns\exfuns.c

............此处省略522个文件信息

评论

共有 条评论