搜索资源列表
ecos-2.0.tar
- ecos实时嵌入式操作系统,适合软件硬件结合的开发者使用,内置redboot-blocks, real-time embedded operating system, suitable for the combination of software and hardware developers to use, built-in redboot
sdrw
- UCOS2的SDMMC卡读写模块,SD/MMC卡读写模块V2.00, 支持SD卡和MMC卡, 支持实时操作系统UCOS-II, 也支持在没有实时操作系统下使用-UCOS2 the SDMMC card reader module, SD / MMC Card Reader V2.00 module, SD Card and MMC cards, and real-time operating system UCOS-II, also support in the absence of the u
ucosii-8051
- uc/os-ii for 8051 This package provides the sources required to use the uC/OS-II v2.00 real time kernel on the 8051 processor. To use this package you will need the TASKING C Compiler toolset v6.0r1 or higher. For info on TASKING products
multitaskRTC
- 基于ucos的多任务与系统时钟实验,使用信号量解决任务间互斥问题,把系统时间显示在一个文本框中-based multi-task with the system clock experiments, the use of signal volume between mutually exclusive mandate to solve the problem, the system shows the time in a text box
SDMMC
- SDMMC卡读写模块 1. ZLG_SD读写模块V2.0: SD/MMC卡读写模块V2.00, 支持SD卡和MMC卡, 支持实时操作 系统UCOS-II, 也支持在没有实时操作系统下使用 2. SDMMCExam: SD/MMC卡读写模块V2.00 使用方法的一个例子 3. 相关中间件和移植代码: SDMMCExam例子 用到的相关中间件和移植代码 4. PC机程序: SDMMCExam例子 的PC机程序,请直接使用本目录下的SDE
embedded system paper1
- 介绍几种cpuThe 8xC251SA/SB/SP/SQ improves on the MCS-51 architecture and peripheral features, introducing the advanced register based CPU architecture i.e., the MCS 251 microcontroller architecture. The register based CPU supports a 40-byte register file
LPC2200RTC
- 使用ADS平台 运行uC/OS-II 显示通过串口实时显示时间 日期 报警等-The use of ADS platform running uC/OS-II real-time display shows the time through the serial port, such as the date of alarm
time
- UC/OS-II上调用时间管理函数实现时间管理的使用-UC/OS-II on the use of time management to achieve
UCOStime
- UC/OS-II上调用时间管理函数实现时间管理的使用-UC/OS-II on the use of time management to achieve
clockkeyrs232
- 基于ARM和proteus 采用定时器实现秒级定时 2个按键进行时间调整,一个采用中断方式、一个采用GPIO方式实现 显示1采用6个数码管(可带外部驱动器),使用动态扫描方式 显示2采用PROTEUS提供的RS232串口终端,用软件驱动串口进行显示 -Seconds using the timer class from time to time to achieve two key time to adjust to a disruption of the way the u
uCOS2GuideAndCode
- 该文件为uCOS-II实时嵌入式操作系统的详细使用教程,代码分析及源代码。教程中对uCOSII中代码各部分功能和模块分章列出,希望对使用和移植的朋友能够有所帮助。-This document gives uCOS-II real-time embedded operating system, the detailed use of tutorials, code analysis and source code. Tutorial on the uCOSII in various parts o
thesis
- 首先对嵌入式系统和嵌入式实时操作系统的发展进行了介绍,并详细介绍了本设计所用的嵌入式实时操作系统UC/OS-II以及在基于ARM Cortex-M3系列最高配置微处理器STM32F103ZE上的移植过程,该操作系统是实现嵌入式UC/GUI以及AD数据实时采集处理的基础。然后详细介绍了本设计所用的UC/GUI嵌入式用户图形界面开发系统的特点及其在UC/OS-II的基础上的移植过程。最后本文详细介绍了设计中所进行的AD数据的实时采集过程以及对数据进行一阶滤波算法处理的过程。比照了采取滤波算法和不使用
LPC2131CLOCKDesign
- 利用LPC2131实时时钟实现电子钟,并利用6位七段数码管显示-Using LPC2131 to achieve real-time clock electronic clock, and the use of six seven-segment LED display
IAR_UCOS_II
- 这是一个移植在ATMEGA16上的UCOS操作系统例子,和正常的移植不同,这个例子中将系统的中断栈和各个任务的任务栈分开了,中断嵌套时要保护的上下文和在中断中分配的临时变量全部在唯一的一个中断栈中,它带来的好处是可以在内存比较小的单片机上使用UCOS,坏处也是显而易见的,它增加了中断切换的时间和复杂性,要根据实际情况取舍。这个例子使用IAR EWAVR 5.30打开。-This is a transplant in the ATMEGA16 UCOS operating system on th
ucos_Timer_Interrupter
- uC/OS中断演示.这个程序演示嵌入式实时操作系统μC/OS中中断的使用情况。-uC/OS interrupt presentation. This program demonstrates the embedded real time operating system μC/OS in the use of interrupts.
ucos-CHS
- 说明如何使用 µ C/OS-II,介绍实时系统概念、内核结构、任务管理、时间管理、任务之间的通讯与同步、内存管理、移植µ C/OS-Ⅱ等-How to use μC/OS-II, introduced the concept of real-time systems, the kernel structure, task management, time management, communication between tasks and synchronization, me
MicroC-OS-III-
- UCOS-III中支持了时间片的轮转调度,为了减少关中断的时间, 内核在对临界段的处理上使用了一些方法,比如为防止中断中访问 临界段代码,把中断的事情分两步来做,即中断中把对内核的操作 仅做保存,实际的操作推迟到一个称为OS_IntQTask中完成!这样 就可以在程序中使用禁止调度的方式来处理临界段的代码,也大大 减少了关中断的时间!但这并不意味着这种方法就是最优了,它是在 任务切换的消耗和关中断的时间来平衡的,所以UCOS-III也支持使用 关中断的方
uCOS-II-V280
- uc/os-II内核,完整的内核代码和相关的说明文档,供研究实时嵌入式内核的人员学习使用。-uc/os-II core, full kernel code and related documentation for the study of real-time embedded kernel to learn to use.
ucos-work-time
- 利用ucos操作系统设计世界时钟,实时多任务操作,并在触摸屏上进行显示-make use of u-cosII system to Design work time
ucos-use-on-51
- 该代码成功将ucos实时操作系统移植到51单片机的硬件平台上,从而让51单片机不再寂寞不再裸跑。-The success of the code will ucos real-time operating system ported to 51 single-chip hardware platform, allowing 51 single-chip is no longer lonely, no longer run naked.