网站地图| 免费获取|
免费论文网
  • 网站首页|
  • 论文范文|
  • 修改降重|
  • 职称论文|
  • 合作期刊|
  • 论文下载|
  • 计算机论文|
  • 外文翻译|
  • 免费论文|
  • 原创论文|
  • 开题报告论文
搜索

当前位置:免费论文网 -> 论文范文 -> 电子机电类 -> 基于PDIUSBD12和K9F2808简易USB闪存设计
自动化论文范文| 电子机电论文| 测控技术论文| 通信专业论文| 电气工程论文| 通信工程论文| 电子信息工程论文| 免费自动化论文| 免费电子论文| 免费电气论文| 免费通信论文

基于PDIUSBD12和K9F2808简易USB闪存设计

本文ID:LW2480 字数:17943,页数:73 价格:¥118.00 → 信用说明

扫一扫 扫一扫
基于PDIUSBD12和K9F2808简易USB闪存设计

论文编号:JD209        字数:17943,页数:73      

摘要
USB(Universal Serial Bus)是一种通用串行总线。是一种快速、灵活的总线接口。与其它通信接口比较,USB接口的最大特点是易于使用,这也是USB的主要设计目标。作为一种高速总线接口,USB适用于多种设备,比如数码相机、MP3播放机、高速数据采集设备等。易于使用还表现在USB接口支持热插拔,并且所有的配置过程都由系统自动完成,无需用户干预。
本论文简要介绍USB(通用串行总线)大容量存储设备类,给出USB控制PDIUSBD12和闪存K9F2808的原理框图,并以这两个芯片为例设计出存储设备的电路图,最后列出程序流程图并加以调试。
论文主要对以下几个方面作了研究:
①USB系统枚举过程的实现。
②K9F2808数据读写控制。
③文件系统在K9F2808上实现。  
④绘制整体电路图并编相应各部分程序。
该设计主要以PDIUSBD12与K9F2808芯片研究为核心。主要包括USB接口、USB总线结构、USB协议、FAT16/32文件系统结构及各部分相关源程序调试及其运行等几大部分。


关键词:USB PDIUSBD12 K9F2808 移动闪存
Abstract
USB (Universal Serial Bus ) is a kind of common serial bus . It is a kind of fast , flexible bus interface . Compared with other communication interface, the greatest characteristic of USB interface is easy to use, this is a main design object of USB too. As a kind of high-speed bus interface, USB is suitable for many kinds of apparatus such as digital camera , MP3 broadcaster , high-speed data gather the apparatus etc.. Easy to use , display interface support hot to insert , draw in USB , and all disposition course is finished automatically by the system still, do not need users to intervene.
This thesis introduces USB (the common serial bus ) apparatus of large memory briefly , provide USB control PDIUSBD12 and flashing memory principle block diagram of K9F2808 , take these two chips as an example , design circuit diagram to store the apparatus, list the procedure flow diagram finally and debug .
Have mainly studied several following respects in thesis:
①USB system enumerates the realization of the course.
②K9F2808 data read and written and controlled.
③The file system is realized on K9F2808.
④Draw whole circuit diagram and compile corresponding all part of procedures.
 This design mainly regards PDIUSBD12 and K9F2808 chip research as the core. Mainly structure , interface of USB and bus of USB., agreement of USB and file of FAT16/32 , systematic structure and every relevant source program debug and odd major part of running etc

Keywords: USB,PDIUSBD12,K9F2808,mobile flash

目录
摘要 I
Abstract II
目录 III
1绪论 1
1.1 PC接口简介 1
1.2 USB 接口分析 1
1.3 USB 器件的选择 2
1.4 Mass Storage协议与FAT16文件系统 2
2 USB总线结构 4
2.1 总线拓扑结 4
2.2 USB设备 4
2.2.1 USB HUB 6
2.2.2 即插即用 6
2.2.3 设备电源 7
2.2.4 设备的挂起 7
2.3 USB主机 7
2.4 USB数据流 8
2.5 USB的端点 11
3协议 13
3.1 Mass Storage 协议 13
3.2 Bulk-Only传输协议 17
3.3 SCSI指令集 19
3.4 FAT16 文件系统 23
3.4.1 FAT 文件系统结构 23
3.4.1 FAT 区 26
3.4.2根目录区(Root Directory Region) 27
3.4.3文件和目录数据区 28
3.4.4 Flash盘的FAT结构 29
4固件程序的实现 31
4.1主循环——MAINLOOP.C 31
4.2 中断服务程序——D12ISR.C 33
4.2.1 控制端点处理 34
4.2.2 普通端点处理 35
4.2.3 总线复位和挂起改变 36
4.2.4 数据提交函数 36
4.3 标准设备请求处理——D12SETUP.C 37
4.3.1 获取状态 GET STATUS(00H) 37
4.3.2 清除特性 CLEAR FEATURE(01H) 38
4.3.3 设置特性 SET FEATURE(03H) 38
4.3.4 设置地址 SET ADDRESS(05H) 39
4.3.5 获取描述符 GET DESCRIPTOR(06H) 41
4.3.6 获取配置信息GET CONFIGURATION(08H) 41
4.3.7 设置配置SET CONFIGURATION(09H) 42
4.3.8 获取接口信息 GET INTERFACE(0AH) 42
4.3.9 设置接口 SET INTERFACE(0BH) 42
4..4 NAND FLASH操作程序——NFLASH32.C 43
4.4.1 块擦除函数 43
4.4.2 页拷贝函数 44
4.4.3 写预处理函数 45
4.4.4 写FLASH函数 45
4.4.5 读预处理函数 46
4.4.6 读FLASH函数 46
5固件调试 48
5.1检查USB器件是否正常工作 48
5.2设备枚举 48
5.3 BULK_ONLY传输协议命令处理 49
5.4 FLASH的读写 50
结论 52
致谢 53
参考文献 54
附录 A USB接口芯片命令总汇 55
A1.初始化命令 56
A2.数据流命令 60
A3.数据流命令 67

基于PDIUSBD12和K9F2808简易USB闪存设计由免费论文网(www.jaoyuw.com)会员上传。
原创论文流程 相关论文
上一篇:微型机控制一体化监控系统 下一篇:开关电源设计
推荐论文 本专业最新论文
Tags:基于 PDIUSBD12 K9F2808简易 USB闪存设计 2009-06-12 14:07:09【返回顶部】
发表论文

联系方式 | 论文说明 | 网站地图 | 免费获取 | 钻石会员 | 硕士论文


免费论文网提供论文范文,论文代发,原创论文

本站部分文章来自网友投稿上传,如发现侵犯了您的版权,请联系指出,本站及时确认并删除  E-mail: 17304545@qq.com

Copyright@ 2009-2020 免费论文网 版权所有 湘ICP备19027999