期刊文献+
共找到8篇文章
< 1 >
每页显示 20 50 100
A Smart Phone-oriented Embedded Real-time Operating System
1
作者 Wang Jigang1, Gu Guochang2, Xu Lifeng1 ( 1 . Chengdu Institute, Central Academy of ZTE Corporation, Chengdu 610041, China 2. Computer Science and Technology Institute of Harbin Engineering University, Harbin 150001, China) 《ZTE Communications》 2005年第4期6-10,共5页
This article presents an embedded Smart Phone Operating System (SPOS) independently designed by ZTE Corporation. The SPOS is based on single kernel architecture with its multi-task real-time kernel supporting hardware... This article presents an embedded Smart Phone Operating System (SPOS) independently designed by ZTE Corporation. The SPOS is based on single kernel architecture with its multi-task real-time kernel supporting hardware platforms and resources of mainstream mobile phones. It has remarkable advantages such as highly efficient and dynamic power management, priority - based preemptive scheduling, fast startup, a variety of drivers, and excellent system stability and operability. For the development of upper layer communication protocols and application software, the SPOS provides wireless communication interfaces and the application program framework. 展开更多
关键词 PHONE SPOS TIME A Smart Phone-oriented Embedded real-time operating System
在线阅读 下载PDF
基于互斥量的MbedOS调度机制剖析
2
作者 刘长勇 王宜怀 《吉林大学学报(信息科学版)》 CAS 2024年第2期284-293,共10页
为了能清晰理解互斥量对共享资源的独占访问原理与机制,在简要分析实时操作系统的互斥量的含义、应用场合、调度机制以及关键要素作用的基础上,对mbedOS互斥量调度机制进行了理论剖析。以KL36芯片为例对mbedOS的互斥量进行了实践,基于... 为了能清晰理解互斥量对共享资源的独占访问原理与机制,在简要分析实时操作系统的互斥量的含义、应用场合、调度机制以及关键要素作用的基础上,对mbedOS互斥量调度机制进行了理论剖析。以KL36芯片为例对mbedOS的互斥量进行了实践,基于时序图采用printf方法直观地输出了线程响应互斥量的调度过程信息,并对互斥量调度机制的实时性能进行分析。通过对互斥量调度机制的剖析,有助于进一步分析mbedOS的其他同步与通信方式,也可为深入理解其他实时操作系统的同步与通信手段提供参考借鉴。 展开更多
关键词 实时操作系统 互斥量 mbedos实时操作系统 KL36芯片 printf输出
在线阅读 下载PDF
Low-Power Operational Amplifier for Real-Time Signal Processing System of Micro Air Vehicle
3
作者 王竹萍 仲顺安 聂丹丹 《Journal of Beijing Institute of Technology》 EI CAS 2010年第3期353-356,共4页
A low-power complementary metal oxide semiconductor(CMOS) operational amplifier (op-amp) for real-time signal processing of micro air vehicle (MAV) is designed in this paper.Traditional folded cascode architectu... A low-power complementary metal oxide semiconductor(CMOS) operational amplifier (op-amp) for real-time signal processing of micro air vehicle (MAV) is designed in this paper.Traditional folded cascode architecture with positive channel metal oxide semiconductor(PMOS) differential input transistors and sub-threshold technology are applied under the low supply voltage.Simulation results show that this amplifier has significantly low power,while maintaining almost the same gain,bandwidth and other key performances.The power required is only 0.12 mW,which is applicable to low-power and low-voltage real-time signal acquisition and processing system. 展开更多
关键词 microelectromechanical system(MEMS) operational amplifier(op-amp) LOW-POWER real-time signal processing system micro air vehicle(MAV)
在线阅读 下载PDF
基于ARM Cortex-M4的mbedOS调度机制剖析 被引量:3
4
作者 刘长勇 王宜怀 《吉林大学学报(信息科学版)》 CAS 2022年第4期663-671,共9页
为了能清晰理解mbedOS调度基本原理与机制,通过阐述ARM(Advanced RISC Machines)Cortex-M4内核对实时操作系统的支持特性,分析了实时操作系统常用的调度策略,采用流程图分析、上下文核心代码解析等方法重点剖析了SVC(Supervisor Call)... 为了能清晰理解mbedOS调度基本原理与机制,通过阐述ARM(Advanced RISC Machines)Cortex-M4内核对实时操作系统的支持特性,分析了实时操作系统常用的调度策略,采用流程图分析、上下文核心代码解析等方法重点剖析了SVC(Supervisor Call)中断、PendSV中断和SysTick中断3种mbedOS调度策略实现方法,最后以意法半导体的STM32L431芯片为例给出了mbedOS的线程调度剖析实践。通过对mbedOS的线程调度剖析,有助于深入理解mbedOS的调度机理,为设计多任务系统提供帮助,也为分析其他实时操作系统提供参考借鉴。 展开更多
关键词 实时操作系统 调度策略 ARM Cortex-M4内核 mbedos系统 STM32芯片
在线阅读 下载PDF
实时操作系统mbedOS互斥量调度机制剖析 被引量:1
5
作者 王庭琛 王宜怀 陈瑞雪 《现代电子技术》 2022年第8期93-100,共8页
嵌入式产品研发中使用多线程并发运行时,为避免公共资源被破坏或线程运行异常,通常使用互斥量(Mutex)来防止公共资源在线程运行时被其他线程抢占。不同于使用单一变量实现的互斥量,在实时操作系统中为优化线程调度并避免错误,所使用的... 嵌入式产品研发中使用多线程并发运行时,为避免公共资源被破坏或线程运行异常,通常使用互斥量(Mutex)来防止公共资源在线程运行时被其他线程抢占。不同于使用单一变量实现的互斥量,在实时操作系统中为优化线程调度并避免错误,所使用的互斥量较复杂且不易理解。目前关于嵌入式实时操作系统中互斥量的实现及应用的相关资料较少,文中在对实时操作系统mbedOS中互斥量的数据结构与操作函数进行详细分析的基础上,设计出一个使用互斥量保护公共资源的软件实例,实例中包含对小灯的控制以及使用串口输出线程的实时运行情况。通过观察灯光的变化并结合串口输出信息,能够直观地理解mbedOS对使用互斥量的进程调度机制,也可为读者理解其他实时操作系统中互斥量的机制提供参考。 展开更多
关键词 实时操作系统mbedos 互斥量调度 软件设计 调度机制 多线程运行 三色灯控制 实例分析
在线阅读 下载PDF
基于GEC架构的mbedOS驻留技术研究
6
作者 孙亚军 王林 +2 位作者 王宜怀 刘长勇 程宏玉 《微电子学与计算机》 北大核心 2020年第6期12-18,共7页
针对当前MCU在实时操作系统上进行嵌入式应用程序开发的需求,提出使用GEC架构,并且在该架构下实现mbedOS操作系统驻留内存,其中提出合理划分Flash和RAM空间设计规则,总结出使用API动态链接技术实现用户程序调用接口程序进行编程,实现嵌... 针对当前MCU在实时操作系统上进行嵌入式应用程序开发的需求,提出使用GEC架构,并且在该架构下实现mbedOS操作系统驻留内存,其中提出合理划分Flash和RAM空间设计规则,总结出使用API动态链接技术实现用户程序调用接口程序进行编程,实现嵌入式编程和通用计算机编程类似,缩短编译时间,加快开发效率.最后分别在S32K144和MKL36Z64进行设计实验,实验表明该技术具有可行性. 展开更多
关键词 GEC架构 mbedos 操作系统驻留 Flash和RAM空间设计 API动态链接
在线阅读 下载PDF
实时操作系统事件响应机制剖析
7
作者 刘长勇 王宜怀 《吉林大学学报(信息科学版)》 CAS 2024年第4期717-725,共9页
为了能清晰理解事件的工作原理与机制,通过分析事件在实时操作系统中的作用、响应原理及流程,基于KL36微控制器采用类PC机的printf输出法,从调度过程时序、响应时间性能等方面剖析了mbedOS的事件响应机制。实验结果表明,通过printf函数... 为了能清晰理解事件的工作原理与机制,通过分析事件在实时操作系统中的作用、响应原理及流程,基于KL36微控制器采用类PC机的printf输出法,从调度过程时序、响应时间性能等方面剖析了mbedOS的事件响应机制。实验结果表明,通过printf函数能将事件响应过程的线程地址、队列地址,队列内容、线程进出队列情况以及事件位等信息直观输出,为读者从底层理解mbedOS的事件响应原理和流程提供便利,也为分析mbedOS的其他同步与通信手段的脉络结构提供方法借鉴。 展开更多
关键词 实时操作系统 事件响应机制 printf 输出 mbedos 实时操作系统 KL36 芯片
在线阅读 下载PDF
The Power-Supply Control System in the Device of Acetylene Production by H-Plasma Pyrolysis Coal 被引量:2
8
作者 陈飞云 张明 +1 位作者 傅鹏 翁佩德 《Plasma Science and Technology》 SCIE EI CAS CSCD 2006年第5期591-595,共5页
The device of acetylene production by hydrogen (H-) plasma pyrolysis coal is examined and developed not only for studying the application of low temperature plasma but also for studying the clean use of coal. The po... The device of acetylene production by hydrogen (H-) plasma pyrolysis coal is examined and developed not only for studying the application of low temperature plasma but also for studying the clean use of coal. The power-supply control system is used to ensure supplying a steady energy to generate and maintain the plasma electric arc of the device. The hardware configuration and the software design of the system are described in this paper. Verified by experiments, this system can meet the requirements of real-time performance, reliability and extensibility for the device. 展开更多
关键词 QNX operating system H-plasma operating interface real-time fieldbus data acquisition
在线阅读 下载PDF
上一页 1 下一页 到第
使用帮助 返回顶部