Welcome![Sign In][Sign Up]
Location:
Search - RTX-full

Search list

[Other resourcesmall_rtos1.12.1

Description: 就像在嵌入系统中使用C语言替代汇编一样,在嵌入系统中使用RTOS是大势所趋。原因主要是现在在大多数情况下编程效率比执行效率重要(单片机便宜嘛)。但纵观51的RTOS,keil c51 所带的RTX Full 太大(6k多),且需要外部ram,又无源代码,很多时候不实用。RTX Tiny虽然小(900多字节),但是任务没有优先级和中断管理,也无源代码,也不太实用。而ucosII虽有源代码,但是它太大,又需要外部ram,所有函数又必须是重入函数,用在51这类小片内RAM的单片机上有点勉强。于是,我借鉴ucosII和RTX Tiny编写了Small RTOS 51,虽然它为51系列编写,但是它还是比较容易移植到其它CPU上。
Platform: | Size: 91045 | Author: gtt | Hits:

[uCOSSmallRTOS for C51

Description: 嵌入系统中使用C语言替代汇编一样,在嵌入系统中使用RTOS是大势所趋。原因主要是现在在大多数情况下编程效率比执行效率重要(单片机便宜嘛)。但纵观51的RTOS,keil c51 所带的RTX Full 太大(6k多),且需要外部ram,又无源代码,很多时候不实用。RTX Tiny虽然小(900多字节),但是任务没有优先级和中断管理,也无源代码,也不太实用。而ucosII虽有源代码,但是它太大,又需要外部ram,所有函数又必须是重入函数,用在51这类小片内RAM的单片机上有点勉强。于是,我借鉴ucosII和RTX Tiny编写了Small RTOS 51,虽然它为51系列编写,但是它还是比较容易移植到其它CPU上。
Platform: | Size: 87185 | Author: joyhee@sohu.com | Hits:

[SCMKEIL RTX51实时操作系中文版

Description: KEIL51的的实时操作系统,帮助国内开发人员进行设计。-KEIL51 of real-time operating systems, and help domestic developers for the design.
Platform: | Size: 427008 | Author: jsb | Hits:

[SCMrtx51fulluse

Description: 51上运行的实时操作系统,该文档对其进行详细的介绍,还提供了许多例子!对于想在51上实现简单的多任务系统,不需要自己嵌入,因为keil工具中已经有了内核-51 running real-time operating systems, the documentation for its detailed descriptions, it also provided many examples! For the 51 to achieve a simple multi-tasking system, not embedded themselves, because Keil tools have kernel
Platform: | Size: 203776 | Author: 陈亮 | Hits:

[SCMrtx_full

Description: 详细介绍51单片机操作系统,包括keilc编译环境的库函数以及其功能,还有如何调用这些函数。-detailed 51 microcontroller operating systems, including keilc build environment of the library function and its function. Besides calling these functions.
Platform: | Size: 203776 | Author: 朱刚强 | Hits:

[Software EngineeringRealTimeMultiTaskKenelAnalyse

Description: 从结构上来说,实时多任务操作系统包括两部分,一部分为操作系统内核(kernel),即实时执行程序(Real Time Executive:RTX),另一部分是输入输出部分(I/O)(注意开发系统不属于操作系统的范畴);嵌入式系统对I/O的需求通常比较小(无文件系统需求),因此很多实时多任务操作系统本质上就是一个实时执行程序,如AMX(Kadak),VRTX(Microtec),iRMX(Intel)等(这里的X即:eXecutive),如果纯粹从kernel的角度来考察目前流行的各种实时多任务操作系统的性能,它们的效率差别都不大。 在市面上可以得到一些RTX的源代码(有用C实现的,有用汇编实现的,还有用PL/M语言实现的),从internet上也可以荡一些下来(我介绍一个站点www.eg3.com,堪称世界电子工程师资源宝库),下面我要介绍的一个RTX版本(我命名为SRTX:short RTX),可以说是RTX中的元老级产品了,来自某研究所,九十年代初他们到美国考察,从美国某公司购得。五年以前,SRTX在国内有售,许多搞工控的研究所利用SRTX开发了一些大型或小型的产品,这里介绍的SRTX我作了一些简化和改动.
Platform: | Size: 52224 | Author: kdo | Hits:

[SCM89C51xingwei

Description: 单片机测量相位和频率的程序,使用了RTX51 TINY操作系统-Single-chip measurement of phase and frequency of procedures, the use of the operating system RTX51 TINY
Platform: | Size: 61440 | Author: huangyucheng | Hits:

[Software EngineeringRTX_full

Description: RTX-51 Real-Time(汉).pdf-RTX-51 Real-Time (Han). Pdf
Platform: | Size: 1212416 | Author: 潘攀 | Hits:

[uCOSKeilRtx51Tiny

Description: Keil Rtx51 Tiny 多任务操作系统源码及说明-Keil Rtx51 Tiny multi-tasking operating system source code and description
Platform: | Size: 209920 | Author: dxy | Hits:

[SCMsmall_rtos1.12.1

Description: 就像在嵌入系统中使用C语言替代汇编一样,在嵌入系统中使用RTOS是大势所趋。原因主要是现在在大多数情况下编程效率比执行效率重要(单片机便宜嘛)。但纵观51的RTOS,keil c51 所带的RTX Full 太大(6k多),且需要外部ram,又无源代码,很多时候不实用。RTX Tiny虽然小(900多字节),但是任务没有优先级和中断管理,也无源代码,也不太实用。而ucosII虽有源代码,但是它太大,又需要外部ram,所有函数又必须是重入函数,用在51这类小片内RAM的单片机上有点勉强。于是,我借鉴ucosII和RTX Tiny编写了Small RTOS 51,虽然它为51系列编写,但是它还是比较容易移植到其它CPU上。 -err
Platform: | Size: 91136 | Author: gtt | Hits:

[OtherTRAFFIC2

Description: /*** *** *** *** *** *** *** *** *** *** *** *** ****/ /* */ /* TRAFFIC2.C: Traffic Light Controller using RTX-51 */ /* */ /* 17-NOV-1994 / EG */ /****************************************************************************/ /* Derived from TRAFFIC.C (originally written for RTX tiny). */ /* Shows advanced features of the full version of RTX-51. */ /****************************************************************************/-/****************************************************************************/ /* */ /* TRAFFIC2.C: Traffic Light Controller using RTX-51 */ /* */ /* 17-NOV-1994/EG */ /****************************************************************************/ /* Derived from TRAFFIC.C (originally written for RTX tiny). */ /* Shows advanced features of the full version of RTX-51. */ /****************************************************************************/
Platform: | Size: 4096 | Author: lolapp | Hits:

[Windows DevelopRTX_8.1_SDK_Runtimes

Description: RTX51 多任务操作系统讲解,解释如何使用 rtx51小型实时操作系统并给出 rtx51完全版功能的概述-RTX51 on multi-tasking operating system, explaining how to use rtx51 small rtx51 real-time operating system and gives an overview of the full version features
Platform: | Size: 25103360 | Author: rensijun | Hits:

[SCMRTX51FULLV7

Description: RTX51 is a real-time kernel for the 8051 family of microcontrollers that is designed to solve two problems common to embedded programs. Multitasking: several operations must execute simultaneously. Real-time control: operations must execute within a defined period of time. These operations are organized as independent computer processes that are referred to as tasks. RTX51 Full is a complete real-time kernel for 8051-based applications with numerous tasks and many resources to manage. CAN support is provided for a number of 8051-based CAN microcontrollers as well as many external CAN controllers.
Platform: | Size: 2076672 | Author: 伊强 | Hits:

[SCMRTX-x51FULL

Description: keil c51 只提供免费的rtx51 tiny版,full rtx51是不免费的,我也是网上找到的,方便共享!-the full rtx51
Platform: | Size: 1440768 | Author: 李伟清 | Hits:

[SCMWebServer

Description: lpc2148使用keil内建rtx写成webserver,虽然功能简单,但已是一个成熟的webserver,放一些静态网页也是没问题的。-lpc2148 using the the keil built-rtx written webserver, although the function is simple, but this is a full-fledged webserver, put some static pages is no problem.
Platform: | Size: 134144 | Author: gk | Hits:

[Other Embeded programRTX_Blinky

Description: rl-rtx exampel for lpc1768 +keil the full soures in kiel root
Platform: | Size: 22528 | Author: ali | Hits:

[Other Embeded programHttp_demo

Description: httpdemo rl-rtx exampel for lpc1768 +keil the full soures in kiel root
Platform: | Size: 73728 | Author: ali | Hits:

[OS DevelopRTX2012

Description: RTX是INTERVALZERO公司的主打产品,是windows的实时扩展,充分利用了windows的友好用户界面,又使用户得到了微秒级的硬实时特性。 目前,主流的CPU都是多核的,RTX充分利用了对称多处理技术(SMP),完全支持多核CPU。在应用时,可以指定RTX程序运行在哪些核上。以8核的CPU为例,RTX可以独占其中的1至7个核上。被RTX独占的核,对于windows而言,是不可见的。如可以配置成4个核运行Windows,4个核运行RTX。 -RTX is INTERVALZERO company s flagship product, is the real-time expansion of windows, make full use of the windows user interface, but also allows users to get microsecond hard real-time features. At present, the mainstream CPU is multi-core, RTX take full advantage of symmetric multiprocessing technology (SMP), fully support multi-core CPU. When applying, you can specify which cores the RTX program is running on. To 8-core CPU, for example, RTX can be one of the 1 to 7 of the core. RTX exclusive nuclear, for windows, is not visible. If you can configure 4 to run Windows, 4 cores run RTX.
Platform: | Size: 144384 | Author: mindengxue | Hits:

[Software EngineeringRTX

Description: RTX是INTERVALZERO公司的主打产品,是windows的实时扩展,充分利用了windows的友好用户界面,又使用户得到了微秒级的硬实时特性。-RTX is INTERVALZERO company s flagship product, is the real-time expansion of windows, make full use of the windows user interface, but also allows users to get microsecond hard real-time features.
Platform: | Size: 2902016 | Author: mindengxue | Hits:

CodeBus www.codebus.net