搜索资源列表
Nucleus_plus_file
- 嵌入式操作系统Nucleus Plus中使用的文件系统,可支持IDE、Floppy Disk、 RAM Disk,由于驱动的原因源码中只能直接支持RAM Disk,与硬件相关的需要按照模板自行提供驱动。本源码已经经过严格测试,并已移植到VxWorks平台上。 -Embedded Operating System Nucleus Plus, the use of the file system that can support IDE, Floppy Disk, RAM Disk. As th
redboot-oset-qt44b0x-rel-v0.2.tar
- 程序可作为Bootloader(支持启动脚本功能)、支持GDB源代码级调试、Flash在线烧写。支持网络、串口通信调试,支持TCP/IP协议、HTTP/TFTP、xyzModem协议下载程序。 硬件:勤研电子44B0X豪华板(S3C44B0X/SST39VF160/RTL8019/8M OSC)。 注:此版本不支持用AMD芯片的flash的豪华板版本。 硬件配置: CPU:S3C44B0X RAM:8M FLASH:SST39VF160 OSC:8M
redboot-strong-rel-v0.2.tar
- 程序可作为Bootloader(支持启动脚本功能)、支持GDB源代码级调试、Flash在线烧写。支持网络、串口通信调试,支持TCP/IP协议、HTTP/TFTP、xyzModem协议下载程序。可源代码级调试uClinux内核。 硬件:思创黄金开发板(S3C44B0X/SST39VF160/RTL8019/10M OSC)。 硬件配置: CPU:S3C44B0X RAM:8M FLASH:SST39VF160 OSC:10M NET:RTL8019
TinyWorks
- TinyWorks操作系统。 每个任务占6~10个字节的RAM空间,整个系统占1k左右的代码空间,支持16个优先级的占先式调度,支持时间片调度。 最大特点:建立的任务越多、并且系统越繁忙时调度越快,最快比系统闲时快数十倍! 用AVR-GCC编译,支持MEGA8-TinyWorks operating system. Each task for 6 ~ 10 bytes of RAM space, the system as a whole accounted for around 1
kfs_1_0_1_release
- kfs嵌入式文件系统1.0.1release版 作者:Eagle 来源:http://www.embseek.com 由embseek开发,专门针对小容量的EEPROM和FLASH等存储器,应用于无操作系统的嵌入式系统中。实现了类似于标准文件操作的接口。压缩包内有在pc下使用ram调试的示例代码。 1.0.1release版本更新内容 修改文件系统初始化api,使用开始地址和结束地址作为参数 修正了文件创建api,添加文件打开模式开关 修正文件碎片管
T138ATFTLCD
- 非常好用的TFT驱动芯片T138A彩色液晶驱动资料及51单片机驱动源代码,支持24位真彩色,内置RAM-Very nice color TFT LCD driver IC T138A 51 Microprocessor-driven information and the source code to support 24-bit true color, built-in RAM
ShiftRegister
- Shift register verilog code
1
- 利用程序在ROM中设置40个固定数值在41~80的BCD码数据,程序运行时,把该数据块读到片内RAM的20H~47H区间,然后把该数据块变换为BIN码(二进制制)存于片内的48H ~6FH区间,再把BIN数据变换为ASCII码存于片外RAM 0100H ~ 013FH区间。-The use of the program ROM set 40 fixed values in the 41 ~ 80 BCD code data, the program runs, to read the data
dosfs-1.03
- DOSFS是兼容FAT的文件系统,适用于嵌入式底层应用。-DOSFS is a FAT-compatible filesystem intended for fairly low-end embedded applications. It is not the leanest possible implementation (the leanest FAT implementations operate in << 512 bytes of RAM, with heavy
ds18b20
- t2440 (ram)ds18b20驱动的源码,适用于linux内核-t2440 (ram) ds18b20-driven source code for linux kernel
buf
- 把一个8位二进制数的各位用ASCII码表示之(亦即为“0”的位用30H表示,为“1”的位用31H表示)。该数存放在内部RAM中byte单元中。变换后得到的8个ASCII码存放在外部RAM以buf始的存储单元中去。-To an 8-bit binary numbers that you use the ASCII code (which is " 0" bit with the 30H, said, " 1" bit said with 31H). The nu
3102fp_ram
- MSC-51 workin with 27c512 8XcX1 source code to read-ram write rom and read rom-write - programm 27c512 UV-PROM . -MSC-51 workin with 27c512 8XcX1 source code to read-ram write rom and read rom-write - programm 27c512 UV-PROM .
ADCaTOUCH
- 此代码可直接运行于mini2440裸机(下载至RAM运行),采用ADS1.2编译。对学习ADC和TOUCH PANEL的人可供参考-This code can be run directly on bare metal mini2440 (downloaded to the RAM to run), using ADS1.2 compiler. ADC and learning of people available for reference TOUCH PANEL
RT-Thread-1.0.2
- RT-Thread 嵌入式操作系统 Kernel内核部分包括了RT-Thread的核心代码,包括对象管理器,线程管理及调度,线 程间通信等的微小内核实现(最小能够到达4k ROM,1k RAM体积占用)。内核库是为了保证 内核能够独立运作的一套小型类似C库实现(这部分根据编译器自带C库的情况会有些不同,使 用GCC编译器时,携带更多的标准C库实现)。CPU及板级支持包包含了RT-Thread支持的各个平 台移植代码,通常会包含两个汇编文件,一个是系统启动初始化文件,一个是线
memb
- 因单片机的ram非常有限,本人在实际的工作中发现在编写单片机程序时能使用动态内存分配将对程序结构和提高程序复杂度有很大的帮助,但是编写动态内存分配代码因ram有限又不适宜采用动态链表的方式来管理内存,采用固定分配块的方式又不能充分利用单片机的ram(有时候一个字节都很重要啊),为此想出这个在速度和ram使用效率折中的办法(因为在使用动态内存的地方往往速度要求不是很高)。 本代码是采用C语言编写,可以在任何可编译C语言的工具上编译。 如果你在使用中发现任何的bug,或者对单片机
ramdisk
- r-thread中将ram虚拟成u盘的代码,参考这个例子可以实现将SD卡等存储设备虚拟成u盘-r-thread u will ram into the virtual disk code, refer to this example can achieve the SD cards and other storage devices into a virtual u disk
STVD-ram-Calculate
- STVD显示代码量,ST公司开发环境下计算ram和code空间的使用-STVD display using code amount calculated under the ST' s development environment ram and code space
stm32f4Pmt9v034
- 用于做机器视觉的,来自px4的源码,http://www.amobbs.com/thread-5525773-1-1.html-the code from px4 PX4Flow is an optical flow camera. Provides optical flow at 250 Hz. Unlike mouse sensors it works indoors without illumination LED. Details. ■168 MHz Cortex M4F
C8051F060-AD-UART1
- C8051F060 自带高速AD进行数据采集 可达100兆采样率 并切缓存与片外ram 并把采集数据通过串口发送给PC - Data Acquisition example for C8051F060 Descr iption: This example illustrates the use of ADC1 and the DMA to acquire and store data. It is intended for use with the C8051F060
ram
- 此代码可以是FPGA内部ram存储器在读取一系列数据后,然后每间隔1秒钟读出来。-This code can be read in the FPGA internal ram memory after a series of data, and then read out at intervals of 1 second.
