虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Micrium-NXP-<b>UCOs-II</b>-LPC

  • 数据库算法源代码

    数据库算法源代码,一本关于uCOS-II的经典教程,特别适合嵌入式系统开发的人员

    标签: 数据库 算法 源代码

    上传时间: 2013-12-25

    上传用户:JasonC

  • C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141

    C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264

    标签: my_Include include define 3.141

    上传时间: 2014-01-17

    上传用户:epson850

  • usb host在ARM7上的实现

    usb host在ARM7上的实现,其中包含了uCOS-II在ARM7上的移植,实现了对U盘的读写。

    标签: host ARM7 usb

    上传时间: 2013-12-15

    上传用户:拔丝土豆

  • 基于ARM7的UCOS2基础实验

    基于ARM7的UCOS2基础实验,uCOS-II for LPC2131 工程模板

    标签: UCOS2 ARM7 基础实验

    上传时间: 2015-05-16

    上传用户:小宝爱考拉

  • UCOS2的SDMMC卡读写模块

    UCOS2的SDMMC卡读写模块,SD/MMC卡读写模块V2.00, 支持SD卡和MMC卡, 支持实时操作系统UCOS-II, 也支持在没有实时操作系统下使用

    标签: UCOS2 SDMMC 读写模块

    上传时间: 2013-12-31

    上传用户:xhz1993

  • 自己写的

    自己写的,基于MIPS4300 64 bitCPU 使用RTC中断移植的UCOS—II源码,内行人明白其重要性

    标签:

    上传时间: 2015-05-19

    上传用户:Ants

  • 数字运算

    数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    标签: 数字 运算

    上传时间: 2015-05-21

    上传用户:daguda

  • 在LPC2200上使用的U盘读写程序

    在LPC2200上使用的U盘读写程序,需要使用uCOS-II操作系统。

    标签: 2200 LPC U盘 读写程序

    上传时间: 2015-05-22

    上传用户:独孤求源

  • 这个例子如果运行,将在仿真的PC窗口中的第1,2,3行显示一些信息后,在随机位置显示 1 ~ 5 .由于keil c51默认不支持重入函数,它的重入函数使用仿真的重入栈而不使用系统栈,而Small R

    这个例子如果运行,将在仿真的PC窗口中的第1,2,3行显示一些信息后,在随机位置显示 1 ~ 5 .由于keil c51默认不支持重入函数,它的重入函数使用仿真的重入栈而不使用系统栈,而Small RTOS 51没有进行重入栈管理,所以在TaskA~TaskE虽然及其相似,但不能合并. 注意:(1)在KEIL C51 工程中,我已经把输出文件目录设在e:\temp中,您可以在Project->Options for Target "Target 1"的output页点击Select Folder for Objects...和Listing页点击Select Folder for Listing...改变. (2)编译时会有5个警告,其中一个是因为没有使用一个系统函数OSSendSignal引起,它可以忽略.另4个是禁止任务间变量覆盖分析引起,必须忽略.感谢网友John X. Liu,在这个例子中我使用了他编写的仿真(dllPc51Emu.dll),这个dll原来是为他移植的Ucos-ii for keil c51的例子编写. (3)Pc51Emu.dll在KEIL C51 V6.23 V7.00工作不正常.

    标签: Small keil c51 仿真

    上传时间: 2015-05-29

    上传用户:无聊来刷下

  • 这个例子是例子2的另一种写法(但任务数量不同),它使用了最高优先级任务作为显示任务,全局变量ShowChar作为参数.函数TaskB是优先级1~10的任务函数,因为没有使用局部变量,这些任务可以用一个

    这个例子是例子2的另一种写法(但任务数量不同),它使用了最高优先级任务作为显示任务,全局变量ShowChar作为参数.函数TaskB是优先级1~10的任务函数,因为没有使用局部变量,这些任务可以用一个函数. 注意:(1)在KEIL C51 工程中,我已经把输出文件目录设在e:\temp中,您可以在Project->Options for Target "Target 1"的output页点击Select Folder for Objects...和Listing页点击Select Folder for Listing...改变. 感谢网友John X. Liu,在这个例子中我使用了他编写的仿真dll(Pc51Emu.dll),这个dll原来是为他移植的Ucos-ii for keil c51的例子编写. (2)Pc51Emu.dll在KEIL C51 V6.23 V7.00工作不正常.

    标签: ShowChar TaskB 函数 10

    上传时间: 2015-05-29

    上传用户:asddsd