欢迎来到毕设资料网! | 帮助中心 毕设资料交流与分享平台
毕设资料网
全部分类
  • 毕业设计>
  • 毕业论文>
  • 外文翻译>
  • 课程设计>
  • 实习报告>
  • 相关资料>
  • ImageVerifierCode 换一换
    首页 毕设资料网 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    计算机专业毕业设计翻译--分析与设计基于嵌入式启动加载器的电动助力向系统

    • 资源ID:129910       资源大小:474.50KB        全文页数:16页
    • 资源格式: DOC        下载积分:100金币
    快捷下载 游客一键下载
    账号登录下载
    三方登录下载: QQ登录
    下载资源需要100金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。

    计算机专业毕业设计翻译--分析与设计基于嵌入式启动加载器的电动助力向系统

    1、题 目 :分析与设计基于嵌入式启动加载器的电动助力向系统 Analysis and Design of Boot Loader on Embedded Electric power steering system Abstract Electric power steering systems (EPS) assist the auto turning using the power supplied by electromotor. An EPS based on embedded processor and embedded operating system is developed. I

    2、n this system, S3C2410X is adopted as CPU and Windows CE 5.0 is selected as RTOS. This paper gives a brief introduction of the hardware platform and the Boot loader. Designing an appropriate boot loader, which is a key step to develop an embedded system, is given in detail. The boot loader, the hing

    3、e connects hardware and OS, is made up of OEM startup code and main code mostly. At the same time, some configuration files should be edited, such as sources, makefile and Boot.bib. Validated by experiment, author can run the boot loader in the video surveillance system successfully, it can help to

    4、debug the system and download the OS image, and the method described in this text to develop a boot loader is available. 1. Introduction As the EPS system has many merits such as environmental protection, energy saving and safe system, the change from the hydraulic power system to the electric power

    5、 steering system will be fast. According to the forecast of ABI Research, the EPS global market will be more than 80 billion dollars by 2010, and there is obviously a significant portion which is driven by the china market. Windows CE 5.0, which is an outstanding RTOS, has more market share in wirel

    6、ess communication, industrial control, and consumer electronics. Microsoft releases the Platform Builder development tool and CETK test tool for Windows CE, and provides different reference modules for different CPUs. Now numerous third-part developers provide the PDK (Peripheral Development Kit) fo

    7、r Windows CE. As a result, it is easy and quick to develop with the help of Windows CE. And designing a boot loader with perfect function is the first step and a decisive step to develop a system. Combining an example, this paper will introduce how to develop a boot loader suitable for the hardware

    8、provided. Boot loader usually downloads operating system (OS) image from workstation to target device. Boot loader communicate with the hardware direct, in that case, hardware platform should be introduced before the boot loader. 2. Hardware platform The hardware of system includes the MCU, the elec

    9、tric source module, the sensors, the A / D sampling module, the H-bridge motor control circuit and the protection module. The structure is shown as Figure 1. when the wheel turn, the sensors collect the torque signals and speed signals and sent them to S3C2410X, the MCU determine a target current an

    10、d the motor rotation direction according the rules of control, and drive the motor through the H-bridge circuit. On the other hand the MCU sample the results current and compare with the target current to control the motor. When the current is big than setting value or the speed is higher than the s

    11、et value, the MCU will sent a signal to disconnect the electrical power in order to protect the system. 3. Boot loader Boot loader is some codes in the target device. The major tasks of it are initializing the hardware and downloading the OS image to memory. In terms of static, the boot loader is ma

    12、de up of BLCommon, OEM code, Eboot, memory management and EDBG drivers etc, which is shown as Figure 2. The BLCommon is a universal frame of boot loader; The OEM code depending hardware is an initialization program, the code contains some functions with the capital OEM initially, and this part is th

    13、e most difficult part of the boot loader. The Eboot is the Ethernet function, such as UDP, DHCP, TFTP program etc. The memory management is the distribution management program that used for permanently storage, EDBG is a driver to debug network card 2. The boot loader of Windows CE has 3 functions.

    14、Its executable sequence is shown as Figure 3: 1) Initialization hardware: include initialization memory, interrupt controller, clock and MMU etc. 2) Control startup: the boot loader usually provides a simple alternate menu for user, letting the user choice startup process. 3) Download and execute OS

    15、 image. At first, after system is electrified, the boot loader usually does code relocation. The boot loader will make itself move from a place to another place to carry out a more convenient accessing in this step. Then, the boot loader configures memory to implement the boot loader. Immediately, a

    16、fter setting environment variables for executing C code, the boot loader jumps to start implementing the main function. After that, the boot loader initializes debug ports and other devices. Making debug ports used as early as possible can help debug boot loader itself too. Then the boot loader impl

    17、ements self-check, if self-check passes, OS image will be downloaded. At last, system starts to execute OS image2. 3.1. Nboot Just described in hardware platform, this system includes a NAND flash which is used to store the program, and S3C2410X supports NAND flash boot loader, in that case, NAND fl

    18、ash boot loader is adopted in this design. When booting, the first 4KBytes of the NAND flash memory will be loaded into Steppingstone and the boot code loaded into Steppingstone will be executed. The NAND flash boot loader is called as Nboot. Nboot initializes processor and NAND flash, completes ARM

    19、 startup process, calls Eboot program. Normally when a system is electrified or reset, its processor should be initialized; the task is performed by boot loader. This part of the boot loader is written in assembly language. Some detail of boot loader which is needed to be pay attention is shown as f

    20、ollow: 1) Write the boot loader in assembly language 2) Disable the interrupt 3) Put the CPU into the supervisor mode 4) Put the exception vector list in the start position of image So does the ARM processor. In the beginning, ARM processor must be initialized, its processes are shown as follow: 1) Set the entry point 2) Configure the exception vector list 3) Disable the watch dog


    注意事项

    本文(计算机专业毕业设计翻译--分析与设计基于嵌入式启动加载器的电动助力向系统)为本站会员(泛舟)主动上传,毕设资料网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请联系网站客服QQ:540560583,我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们
    本站所有资料均属于原创者所有,仅提供参考和学习交流之用,请勿用做其他用途,转载必究!如有侵犯您的权利请联系本站,一经查实我们会立即删除相关内容!
    copyright@ 2008-2025 毕设资料网所有
    联系QQ:540560583