登录
首页 » 其他项目 » UCOS一种只支持优先级抢占型调度的操作系统。它不支持同一个优先级有2个及以上的任务同时运作。 本文修改的UCOS支持不同优先级调度的同时,支持同一个优先级...

UCOS一种只支持优先级抢占型调度的操作系统。它不支持同一个优先级有2个及以上的任务同时运作。 本文修改的UCOS支持不同优先级调度的同时,支持同一个优先级...

于 2022-07-01 发布 文件大小:172.14 kB
0 225
下载积分: 2 下载次数: 1

代码说明:

UCOS一种只支持优先级抢占型调度的操作系统。它不支持同一个优先级有2个及以上的任务同时运作。 本文修改的UCOS支持不同优先级调度的同时,支持同一个优先级有2个以上的任务以时间片轮转方式进行调度。 这个就是UCOS和修改的UCOS的区别。-UCOS only support a priority-based scheduling of the operating system to seize. It does not support the same priority level 2 and above have the task of operating at the same time. This article uCOS modified to support different priority scheduling at the same time, support the same priority level has two more tasks to the time slice approach to scheduling rotation. This is uCOS uCOS and modified difference.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Bubble Hall, and Shanda' s games are very similar to a similar product, we ca...
    泡泡堂,和盛大的游戏非常类似,功能差不多,大家可以相互参考学习下-Bubble Hall, and Shanda" s games are very similar to a similar product, we can learn from the next cross-reference
    2022-04-19 17:40:27下载
    积分:1
  • 文件管理系统模拟,delphi实现。
    文件管理系统模拟,delphi实现。-document management system simulation, delphi achieve.
    2023-07-30 05:35:03下载
    积分:1
  • C语言实现的小型计算器
    该程序是利用c语言编写的小型计算机软件程序,适合学完全部c语言的初级学者学习,用来提高自己的编程能力,其中包含有头文件,还有测试文件
    2022-04-26 17:43:54下载
    积分:1
  • 飞鸽传书 可以在局域网上应用一些关于文件传输的 高速且有效...
    飞鸽传书 可以在局域网上应用一些关于文件传输的 高速且有效-Dove Chuanshu LAN applications in a number of high-speed file transfer and effective
    2022-04-23 01:22:09下载
    积分:1
  • 将中缀表达式转换为后缀表达式,并计算任意四则运算表达式的结果,采用链表和队列实现,非文法和状态机...
    将中缀表达式转换为后缀表达式,并计算任意四则运算表达式的结果,采用链表和队列实现,非文法和状态机-Infix expression would be converted to suffix expressions, and calculate the arithmetic expression of arbitrary results, the use of linked lists and queues to achieve, non-grammar and the state machine
    2022-02-15 14:53:48下载
    积分:1
  • hi everyone, it is other people s program by c++ it is nice (一组开关,希望搞工控界面的xdjm能用...
    hi everyone, it is other people s program by c++ it is nice (一组开关,希望搞工控界面的xdjm能用的上。 位图开关,你用你自己的图替换掉,就可以得到你自己风格的开关了,其他几个都是用GDI画的。 ), enjoey it~-hi everyone, it is other people s program by c it is nice (a group switches, two or IPC interface delivers usable on. Bitmap switch, you use your own map replace, it can be your own style of the switch, has been used in several other GDI painting.) , it was enjoey
    2022-02-10 00:49:04下载
    积分:1
  • 对grwave PC版需要一台IBM PC / AT或等效
    地波场强计算,高频地波场强衰减计算,高频电磁波地波传播计算仿真,Fortran源程序,可以在cirr公开网址上获得。- The PC version of GRWAVE requires an IBM PC/AT or equivalent (80286 microprocessor) with a math co-processor and a minimum of 256 kilobytes of memory. Disk Contents: GRWAVE is supplied on a 3.5" or 5.25" disk which contains three main files. These are GRWAVE.EXE, GRWAVE.FOR and GRWUSR.MAN. GRWAVE.EXE is executable machine language code. GRWAVE.FOR is the FORTRAN source code. Compilation of this source code to produce an executable code requires a FORTRAN compiler which supports double precision complex arithmetic. Microsoft FORTRAN Version 4.01 was used to compile and link GRWAVE.FOR to produce GRWAVE.EXE. Compilation has also been tested with Lahey FORTRAN F77L [*]. It is known the IBM Professional FORTRAN will not work because of a lack of support for double precision complex arithmetic. [*] Note: GRWAVE uses a function, DREAL, which is not an in
    2022-04-14 19:32:30下载
    积分:1
  • 一:需求分析 1. 问题描述 魔王总是使用自己的一种非常精练而抽象的语言讲话,没人能听懂,但的语言是可逐步解释成人能听懂的语言,因为的语言是由以下两...
    一:需求分析 1. 问题描述 魔王总是使用自己的一种非常精练而抽象的语言讲话,没人能听懂,但他的语言是可逐步解释成人能听懂的语言,因为他的语言是由以下两种形式的规则由人的语言逐步抽象上去的: ----------------------------------------------------------- (1) a---> (B1)(B2)....(Bm) (2)[(op1)(p2)...(pn)]---->[o(pn)][o(p(n-1))].....[o(p1)o] ----------------------------------------------------------- 在这两种形式中,从左到右均表示解释.试写一个魔王语言的解释系统,把 他的话解释成人能听得懂的话. 2. 基本要求: 用下述两条具体规则和上述规则形式(2)实现.设大写字母表示魔王语言的词汇 小写字母表示人的语言的词汇 希腊字母表示可以用大写字母或小写字母代换的变量.魔王语言可含人的词汇. (1) B --> tAdA (2) A --> sae 3. 测试数据: B(ehnxgz)B 解释成 tsaedsaeezegexenehetsaedsae若将小写字母与汉字建立下表所示的对应关系,则魔王说的话是:"天上一只鹅地上一只鹅鹅追鹅赶鹅下鹅蛋鹅恨鹅天上一只鹅地上一只鹅". | t | d | s | a | e | z | g | x | n | h | | 天 | 地 | 上 | 一只| 鹅 | 追 | 赶 | 下 | 蛋 | 恨 | -one : a needs analysis. Problem description always use their own fiendish a very concise and abstract language speech Nobody can understand, but the language is gradually explained adult can understand the language, because his language is composed of the following two forms of
    2022-09-04 11:50:02下载
    积分:1
  • clock generator can demonstrate minutes and seconds, hours, the next to the FPGA...
    时钟发生器,可以显示分,秒,小时,下到FPGA上验证过,功能基本正常-clock generator can demonstrate minutes and seconds, hours, the next to the FPGA tested normal function
    2023-03-11 14:40:03下载
    积分:1
  • real estate property resource management source.
    房地产商房产资源管理源码。-real estate property resource management source.
    2022-05-12 17:22:24下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载