摘要: static const char* const str[] = {“string”} 静态常量型指针变量 static const char* 常量型变量 const str[] 这样修饰的作用为 指针 str 不能做修改、做运算 即 str++,str-- 非法 该指针为 only-read 变 阅读全文
posted @ 2017-11-09 17:23 壹点灵异 阅读(4387) 评论(0) 推荐(1) 编辑
摘要: FatFS源代码中的函数逻辑关系 第一 调用函数 f_mount() result = f_mount(&fs, FS_VOLUME_NAND, 0); /* Mount a logical drive */ FS_VOLUME_NAND 代表 “路径” 第二 进入函数 f_mount()内 1 / 阅读全文
posted @ 2017-11-09 01:57 壹点灵异 阅读(3821) 评论(0) 推荐(0) 编辑