资源简介
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\la
文件 3843 2015-02-11 12:11 (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\la
文件 3741 2015-02-11 12:11 (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\la
文件 2379 2015-02-11 12:11 (STM32F1 V3.0)TETRISV2.0\FATFS\doc\img\la
文件 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个文件信息
相关资源
- 基于FPGA技术的俄罗斯方块游戏
- 在stm32f103开发板上编写一个俄罗斯方
- GUI俄罗斯方块
- 俄罗斯方块(VFP 开发的)
- Qt5实现的俄罗斯方块
- Qt俄罗斯方块源码亲测通过编译
- Qt 做的俄罗斯方块游戏代码
- Appinventor2 游戏 ----俄罗斯方块_源码
- teris 俄罗斯方块 3个不同逻辑版本打包
- labview俄罗斯方块.zip
- 用Qt写俄罗斯方块游戏的教程和源码
- windows编程实现俄罗斯方块
- win32汇编版俄罗斯方块
- 基于Qt5图形视图框架的俄罗斯方块
- SDL俄罗斯方块
- APP INVENTOR 俄罗斯方块
- 基于MSP430F5529的掌上游戏机
- 基于arm芯片的俄罗斯方块游戏
- Unity3D Tetris 俄罗斯方块
- 基于qt的俄罗斯方块源代码
- J2me俄罗斯方块,设计报告
- 用51单片机与LCD12864实现俄罗斯方块游
- 单片机的俄罗斯方块
- 基于stm32的俄罗斯方块游戏机总工程文
- unity3d俄罗斯方块源码
- 最全的FPGA俄罗斯方块包含5个版本的完
- cocos2dx 3.4 俄罗斯方块 源代码及运行文
- DirectX版俄罗斯方块(vs2010代码.
- FPGA俄罗斯方块
- 简易俄罗斯方块
评论
共有 条评论