野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 13775|回复: 3

关于文件系统例子代码的一些问题。

[复制链接]
发表于 2015-11-15 22:12:41 | 显示全部楼层 |阅读模式
typedef enum {
    FR_OK = 0,                /* (0) Succeeded */
    FR_DISK_ERR,            /* (1) A hard error occured in the low level disk I/O layer */
    FR_INT_ERR,                /* (2) Assertion failed */
    FR_NOT_READY,            /* (3) The physical drive cannot work */
    FR_NO_FILE,                /* (4) Could not find the file */
    FR_NO_PATH,                /* (5) Could not find the path */
    FR_INVALID_NAME,        /* (6) The path name format is invalid */
    FR_DENIED,                /* (7) Acces denied due to prohibited access or directory full */
    FR_EXIST,                /* (8) Acces denied due to prohibited access */
    FR_INVALID_OBJECT,        /* (9) The file/directory object is invalid */
    FR_WRITE_PROTECTED,        /* (10) The physical drive is write protected */
    FR_INVALID_DRIVE,        /* (11) The logical drive number is invalid */
    FR_NOT_ENABLED,            /* (12) The volume has no work area */
    FR_NO_FILESYSTEM,        /* (13) There is no valid FAT volume */
    FR_MKFS_ABORTED,        /* (14) The f_mkfs() aborted due to any parameter error */
    FR_TIMEOUT,                /* (15) Could not get a grant to access the volume within defined period */
    FR_LOCKED,                /* (16) The operation is rejected according to the file shareing policy */
    FR_NOT_ENOUGH_CORE,        /* (17) LFN working buffer could not be allocated */
    FR_TOO_MANY_OPEN_FILES,    /* (18) Number of open files > _FS_SHARE */
    FR_INVALID_PARAMETER    /* (19) Given parameter is invalid */
} FRESULT;
//这是static FRESULT scan_files (char* path) 的定义
FRESULT res;
//然后下面是赋值的
                                        //存储音频文件名到playlist(含路径)
                                        res = f_open (&file, "0:mp3player/playlist.txt", FA_READ|FA_WRITE|FA_CREATE_ALWAYS );
                                        res = f_lseek (&file, file_num*FILE_NAME_LEN);  
                                        res = f_write (&file, file_name, FILE_NAME_LEN, &rw_num);   
                                        res = f_close (&file);
                                       
                                        //存储音频文件名及路径到lcdlist(仅文件名)
                                        res = f_open (&file, "0:mp3player/lcdlist.txt", FA_READ|FA_WRITE|FA_CREATE_ALWAYS );
                                        res = f_lseek (&file, file_num*FILE_NAME_LEN);  
                                        res = f_write (&file, fn, FILE_NAME_LEN, &rw_num);   
                                        res = f_close (&file);
//
然后我的问题是从上面的类型定义来说res不是枚举的吗?枚举类型不是不能赋值的吗?就算能赋值,res赋值这么多,会不会重叠了?


回复

使用道具 举报

发表于 2015-11-16 08:43:18 | 显示全部楼层
枚举怎么不能赋值?赋值之后怎么会重叠?连续赋值只会覆盖
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-11-16 08:54:32 | 显示全部楼层
flyleaf 发表于 2015-11-16 08:43
枚举怎么不能赋值?赋值之后怎么会重叠?连续赋值只会覆盖

1. 枚举值是常量,不是变量。不能在程序中用赋值语句再对它赋值。(书上是这么说的)
我的重叠的意思就是覆盖的意思..
既然会覆盖,怎么不直接 res = f_close (&file);前面还要一堆
回复 支持 反对

使用道具 举报

发表于 2015-11-16 09:08:26 | 显示全部楼层
376262974 发表于 2015-11-16 08:54
1. 枚举值是常量,不是变量。不能在程序中用赋值语句再对它赋值。(书上是这么说的)
我的重叠的意思就 ...

调试时可能需要对res输出,调试完了就不管了,res赋值的代码保留。
没听说过枚举不能赋值,不能赋值那就没什么用了
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-24 06:39 , Processed in 0.026765 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表