搜索资源列表
arm_ucos
- 嵌入式系统设计与实例开发-基于ARM微处理器与ucosii实时操作系统(王田苗)-Embeded system design and development base in arm microprocess and ucosii RTOS(TIANMIAO WANG)
lwIP TCP-IP协议栈的设计与实现
- lwIP TCP-IP设计与实现(基于ucos操作系统)-design and implement of the lwIP TCP-IP stack ((based on uCOS operating system)
uC_OS_II_外围接口程序大全
- uCOS-II作者Jean J.Labrosse所著图书 《嵌入式系统构件》书后光盘中的源代码。基本设计了常用嵌入式系统的外围硬件接口程序,源码有极其详细的注释-uCOS-II author Jean J. Labrosse books written by "embedded system components" after the CD source. The basic design of embedded systems commonly used external
一个多用户多级目录结构文件系统设计与实现
- 课程设计的环境是Linux 操作系统。 设计时可利用Linux 提供的文件管理的功能调用,建立一个模拟的文件系统。基本思想是,在Linux 系统中创建一个较大容量的文件,作为所设计的文件系统的“文件卷”,并利用Linux 系统的功能调用,编写各程序模块。-curriculum design environment is the Linux operating system. The design can use Linux for the document management function
mp3程序设计包
- MP3的程序的代码,用于嵌入式系统中MP3的编码和解码,做MP3播放器的可以做为参考。-MP3 procedure code for embedded systems MP3 encoding and decoding, so the MP3 player can be used as a reference.
1.46PalmH323
- voip原代码,不过没有电路图,不过可以参考别人的产品自己设计,祝你好运,-voip original code, but no circuit, but others can refer to the products of its own design, I wish you good luck, huh
TC 2.0库函数
- 嵌入式系统软件设计中用到的C函数库,包含说明文档,按照字母查询。-embedded system design software used in the C library, including documentation, in accordance with the letters inquiries.
uCOS2_4510_EG
- UCOSII V2.52 在三星SNDS4510开发板(国内基本所有的4510b的板子都是抄袭此公板设计的)上移植的成功例子,本压缩包内的MBoxMain.c为消息邮箱的例子,使用时请把其更名为main.c,MSemMain.c为信号量的例子,使用时请把其更名为main.c。-UCOSII V2.52 Samsung SNDS4510 development board (all the basic domestic 4510b are copying features of this publ
memory_administration
- 操作系统课程设计中的内存分配与回收! 有参考价值!-courses on operating system design and distribution of memory recovery! Reference value!
MY_GUI
- 基于μCGUI的嵌入式图形界面设计,资料很详细,欢迎下载!- Inserts the type graphical interface design based on mu CGUI, the material is very detailed, welcome to download!
lpc2148_ucos2
- ucos2 v2.80在lpc2148上的一个完整程序,在IAR上运行,包含4中断设计,串口的源代码.还有红外解码运用-ucos2 v2.80 in lpc2148 of a complete procedure, the IAR run contains four interruption design, Serial source. also use infrared decoder
ucOS-II_for_51
- 实施操作系统的设计和开发,可以一直到其他的mcu,但是要注意flash和ram-implementation of the operating system design and development, it has to other mcu. However, to the attention of flash and ram
zlg_boot
- 基于ZLGFS的BOOT,可以通过源码学习BOOT的运行流程,设计出自己的BOOT
ARMTestSys12.14
- 用三星的arm7系列s3C44B0X设计的控制系统,具有14位AD和16位精度DA、液晶显示还有5*5的键盘,操作系统为ucos,功能是检测位气压并通过da进行流量控制。
Counter
- PROTEUS下仿真LPC2106,运行UCOS设计的计数器程序,通过两个按键来控制加减计数器,并输出数码管显示。包括源程序和仿真电路。
uCOS2_MemManager
- uC/OS-II内存管理实例 这个程序演示要体现内核的内存分配思想的策略。为此,设计了内存的分配和回收,完成一系列动作。
uCos2_MessageQueue
- 这个程序演示基本的消息队列。程序启动设计了6个普通应用任务以及一个控制任务TAC,等待消息的任务总是按照优先级的高低来决定获得消息的顺序,实现消息队列的使用。
ucos
- ucos课件周立功内部资料 uos-II工程模板,程序设计基础,内核分析-ucos courseware ZLG internal information uos-II project templates, program design based on core analysis
简易0S设计
- 简易的os设计,以 ARM9为平台,介绍一个多任务抢占式调度器,抢占式任务调度,提供延时,挂起,恢复任务操作(A simple OS design, based on ARM9, introduces a multitask preemptive scheduler, preemptive task scheduling, providing latency, suspending, and restoring task operations)
实验 6 消息邮箱通信设计
- (1)创建两个任务,任务 1 不断循环发送字符 A~Z,通过邮箱的方式传递数据给任务 2,任务2 将从任务 1 收到的数据通过显示器显示输出。提示:定义 StrMbox 邮箱用来传递消息。 (2)设计 Task1、Task2、Task_Start 三个任务,Task_Start 负责创建 Task1 和 Task2 任务并创建邮箱 StrMbox。Task1 任务负责从键盘接收字符串(exit 结束),并把字符串发送至邮箱 StrMbox,Task2 负责从邮箱接收字符串并输出到显示器。要求用