版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Design of electronic storage cabinet based on RTOS SmallDepartment of electronics and communication engineering, PSG college, Coimbatore IndiaAbstract:This paper introduces the design principle of the electronic storage control system based on RTOS Small, and introduces the system used in this syste
2、m to make the controller, which can manage the N storage cabinet at the same time. The door lock is controlled by the electromagnetic valve, when customers need to save the package, can go to the lockers before press the "open" button, the microcontroller receives a pulse signal, and the s
3、ystem I/O port to send corresponding signals to control the electromagnetic valve lock door will be an empty box is opened, the customer can save the package and the door shut. When the customer needs to take the package, will as long as the bar code placed in front of the bar code reader, barcode r
4、eader bar code information collected by the output voltage signal corresponding to the microcontroller, the password system is relatively consistent, send out signals to the solenoid valve is open, the customer can remove the package.Key words:Small RTOS;electronic storage cabinet; save package1、Int
5、roductionRTOS RAM Small demand for small, very suitable for such a relatively small resources of the system. RTOS has a multi tasking, strong real-time, and can be reduced to the kernel, making the design of real-time applications, expansion and maintenance easier. The introduction of the idea of RT
6、OS, instead of the traditional software design method, so that it is no longer a single thread structure, through the application is divided into several independent tasks, RTOS makes the design process of application system is simplified. In this paper, the software design of electronic storage cab
7、inet based on single chip microcomputer is combined, the design idea of RTOS Small and the application of message queue communication mechanism are briefly analyzed.1.1 basic principles of RTOS51 SmallRTOS51 Small is a very small kernel, fully integrated in the C51 KEIL compiler, only take less memo
8、ry space, you can run in the 51 single chip microcomputer system without external data memory. The kernel is responsible for initializing and open, other tasks scheduling system, according to the priority of tasks, a reasonable distribution of CPU in different time between tasks, the kernel can gene
9、rally provide task scheduling and interrupt service function. A program and a task, the task of each separate, independent implementation of the part called thread. All event driven and time driven are reflected in the settings of the corresponding task identification and thread identification. When
10、 the hardware environment, on the basis of the identification, by arranging the system interrupt and task scheduling algorithm adjust the response, by using the method of setting up environmental variables, which can interrupt exit after return to any more than one set of entrance in one to perform,
11、 and effectively solves the key problem of flexible switching of foreground and background tasks thread. RTOS Small 51 user tasks with a running state, ready state, wait and suspend, interrupt service program. At any moment, the state of the task is one of these four states. In order to save memory,
12、 create and delete mission OS dynamic, with the function OSSTART () to start a multi tasking environment, OS took all the tasks set up, and set them as the ready state, the highest priority task to run. Only when all the priority is higher than its task to wait. Ready to enter a state of operation.
13、The scheduler will be the top priority of the task ready list as the next task to be performed.48 / 6Task call os_wait function, pending the current task, waiting for one or several intervals (K_IVL), time out (K_TMO), signal (K_SIG) events. If waiting for event has occurred, continue to implement t
14、he current task; if waiting for events did not occur, the corresponding waiting sign, suspend the task to task switching program segment switch to the next task.Small RTOS51 (init) by performing a function to register initialization, call the function OSSTart () to initialize each task stack and per
15、form the first task, and the choice of the first task for the reason that the task priority level. In the selection process to complete the task of scheduling.1.2 communication between tasksCommunication between tasks using the message queue, after 3 steps: to create a message queue OSQCreate (), to
16、 the message queue message OSQPost (), take message OSQPend (). Call the OSQPost () function to send the message, if you already have a task waiting for the message, immediately turn to wait for the news task, if the message queue is full, is unable to deliver the message, return an error. If the me
17、ssage queue is not full, but there is no other task waiting for the message, then. It is worth noting that, when the queue is full, the function does not suspend the current task, so call the function of the task should be judged to return the condition, if the message is full, it should be hung fro
18、m the current task. When receiving a message, if the message queue is empty, the task of taking the message will be suspended until a message is received in the message queue.2. Application examples2.1Hardware platform For example, the system block diagram is as follows. The electro
19、nic storage cabinet can control the maximum number of goods storage box is 32, divided into about 16 boxes, the picture only draw 16 road control. Control chip using AT89C55 microcontroller, with real-time clock module, bar code reader, liquid crystal display module, thermal printer composition, des
20、igned to three PCB board.1 master control board, the user's storage and access to the user interface, save the package password, display the user access to the password in the process of the password input and the state of all 32.The 2 door control panel is composed of three parts, the first par
21、t of the box is detected, including 16 infrared detection input, 16 way infrared emission control drive. The second part of the 16 road relay control box is controlled by 16 small DC motor constitute open 16 box control. In the third part, the status of the box door is detected, and the opening / cl
22、osing of the 16 boxes is detected.3 access package barcode printing, voice prompt, the whole system is composed of 4 single chip with the MCU control work, operation management package users and record the history parameters, then sends commands to the microcontroller the distribution of empty conta
23、iner and print out the package, to the user.2.2 software designThe electronic storage cabinet mainly comprises a key processing module, a display processing module and a communication processing module. Therefore, the task can be divided into key display, receive data, command processing, sending da
24、ta and other 4 tasks.The microcontroller receives the user according to the package to enter a password, password and key processing, display box display, send out commands for example, illustrate the main design idea.After the system initialization, the article uses function OSSTart () to set up a
25、multi task environment, set up the task stack for each task, and successfully set up 4 tasks, waiting for the wake of the corresponding task. Users only need to define functions they want to achieve for the mission, declared in the Config.h task function name and its priority, and the number of thei
26、r code can be, no traditional programming under the kind of general relations, the system will automatically run the code. RTOS51 Smal transplantation is mainly configured OS-CPU.H, OS_CFG.H and CONFIG.H three files, where the OS_CFG.H file is mainly used for the operating system and the reduction o
27、f the clock and other related configuration.Define 4 tasks in the CONFIG.h file.#ifnedf. .#endifLimited to the length of the single chip microcomputer to send and receive data procedures.3. SummaryThe real-time multi task operating system makes programming more efficient, maintenance and modificatio
28、n more convenient, so it is widely used at present, especially in the embedded system. At the low end of the 51 single chip application, the use of real-time multi tasking operating system, using RTOS Small multi tasking platform for system application design and improvement, also has practical sign
29、ificance.In this paper, the innovation points: the idea of RTOS Small multi task application in a specific single chip microcomputer control electronic storage cabinet system software design, the message queue based on the task of communication programming method.Reference:1 Raj Kamal, Embedded Syst
30、ems: Architecture,Programming And Design, 2008 edition, published by McGraw Hill Education Private Limited.2 Mazidi Muhammed Ali, The 8051 Microcontroller AndEmbedded Systems Using Assembly And C, second edition, published by Pearson education.3 Kenneth J. Ayala, The 8051 Microcontroller, 2004 edition.4 Deepak Gup
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 昆明理工大学津桥学院《管理学概论》2021-2022学年第一学期期末试卷
- 2024版年度健身房经营承包合同2篇
- 二零二四年股权激励与员工期权合同3篇
- 二零二四年度城市清淤项目翻斗车租用协议3篇
- 2024年度共建人工智能研发中心合作协议
- 2024年度大型港口扩建工程合同2篇
- 2024年度股权代持与转让合同
- 基于2024年度的航天技术研发保密协议3篇
- 2024年大数据分析平台建设及维护合同
- 二零二四年广告创意设计咨询服务合同2篇
- 供电分公司创建学习型组织工作汇报材料
- 《古文里的童智》优秀课件
- 心理健康C证面试活动课设计题
- INVOICE商业发票格式简洁英文版
- 预铺反粘防水卷材施工工法
- 科技奖励政策解读与科技奖励申报
- 抢救车管理持续质量改进
- DB14T 2475-2022 在役充电桩安全管理规范
- 金融工程学(第五版)第9章利率风险管理
- 双重预防机制培训内容
- 烟花爆竹仓库建设项目可行性研究报告
评论
0/150
提交评论