• 大小: 5.92MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-25
  • 语言: 其他
  • 标签:

资源简介

STM32实现俄罗斯方块,正点原子战舰V3可直接运行

资源截图

代码片段和文件信息

/*------------------------------------------------------------/
/ Open or create a file in append mode
/------------------------------------------------------------*/

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;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-01-18 16:39  (STM32F1 V3.0)TETRISV2.0\
     目录           0  2016-01-18 16:39  (STM32F1 V3.0)TETRISV2.0\FATFS\
     目录           0  2016-01-20 14:12  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\
     文件        3425  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\css_e.css
     文件        3840  2015-02-12 20:17  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\css_j.css
     文件         125  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\css_p.css
     目录           0  2016-01-18 16:39  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\
     文件        1063  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\app1.c
     文件        1609  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\app2.c
     文件        3810  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\app3.c
     文件       10365  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\app4.c
     文件        1414  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f1.png
     文件        1458  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f2.png
     文件        1039  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f3.png
     文件        2335  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f4.png
     文件        2479  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f5.png
     文件        1464  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f6.png
     文件       11388  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\f7.png
     文件       14357  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\funcs.png
     文件        5521  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\layers.png
     文件        3843  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\layers1.png
     文件        3741  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\layers2.png
     文件        2379  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\layers3.png
     文件      686662  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\mkfatimg.zip
     文件        7932  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\modules.png
     文件       19068  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\rwtest.png
     文件        8153  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\rwtest2.png
     文件        3011  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\rwtest3.png
     文件        5926  2015-02-11 12:11  (STM32F1 V3.0)TETRISV2.0\FATFS\doc\updates.txt
     目录           0  2016-01-18 16:39  (STM32F1 V3.0)TETRISV2.0\FATFS\exfuns\
     文件        3750  2015-03-07 12:25  (STM32F1 V3.0)TETRISV2.0\FATFS\exfuns\exfuns.c
............此处省略303个文件信息

评论

共有 条评论