搜索资源列表
miniweb-0.8.19
- MiniWeb是一个针对嵌入式应用而开发的微型Web Server,它占用资源少,工作效率高,可移植性好,使用C语言编写,可以单线程服务多个用户,支持动态页面生成和页面变量替换等动态Web技术,可作为静态库或动态库内嵌于其他软件中,也可作为独立的Web server运行在Windows和Linux上。-MiniWeb was an embedded application and development of the micro-Web Server, It occupied less reso
smp86xx_rootfs.tar.bz2
- sigma smp8634/8635 toolchain rootfs building source. ================= Readme.txt ================= This is the Sigma Designs customization of the root file system for the SMP86xx family of chips. This package is of course
arm_x86-qtopia.rar
- x86-qtopia.rar,qtopia开发环境最简易的安装,帮助您省去繁琐的步骤,环境变量自动添加,x86-qtopia.rar, qtopia development environment for the easiest installation, help you avoid the cumbersome steps, the environment variable is automatically added
u-boot-1.2.0.tar
- 移植成功的u-boot1.2.0源码,支持TX2440开发板或者2K大页面nandflash,DM9000a网卡的其他厂家的2440开发板。可设置环境变量以nandflash、网络(tftp以及nfs都可)引导内核,适合初学者进行代码分析或者作为上层开发人员的内核引导工具。 备注:本源码在ubuntu10.04系统下,采用arm-linux-softfloat-gnu-gcc2.4.5编译器编译成功,并在TX2440开发板上完美运行。-Successful transplantation o
GNU
- +make中文手册第二章:GNU make 介绍 2.1 Makefile简介 2.2 Makefile规则介绍 2.3 简单的示例 2.4 make如何工作 2.5 指定变量 2.6 自动推导规则 2.7 另类风格的makefile 2.8 清除工作目录过程文件 -+ Make Chinese manual Chapter: GNU make Descr iption 2.1 Makefile Introduction 2.3 Introduction 2.
variable
- RTlinux variable task interacting exambles. Good to study
u-boot-1.1.6-TQ6410_V0.1
- ARM11 S3C6410底层软件 UOOBT 启动 支持SD启动 WINCE LINUX TQ6410 u-boot 版本:u-boot-1.1.6 主要功能: 1、支持一键式菜单,操作简单方便 2、支持Nand Flash擦除、读、写 3、支持USB 下载镜像 4、支持打印、设置、保存环境变量 5、支持内存内容显示、对比、修改 6、支持bootm、bootargs设置 ★ 提供源代码 -ARM11 S3C6410 UOOBT underlying so
xitongdiaoyong
- 1:修改dev.c文件,定义一个全局变量int count=0 然后用它来统计包的个数。 2.修改sys.C文件,添加extern int count 然后定义自己的函数,asmlinkage int sys_mycall(void) 3.修改entry.S和unistd.h文件,为自己定义的函数增加系统调用号。 4.自己写个函数进行系统调用。-1: Modify dev.c file, define a global variable int count = 0 then use
qrsc
- 嵌入式 C_C++语言精华文章集锦 struct深层探索、extern“C”含义探索、void及void指针深层探索、可变参数表深层探索、基于ARM的嵌入式Linux移植真实体验、Linux设备驱动编程。C语言高效编程的几招-Embedded C_C++ language to explore the deep essence of the article highlights struct, extern " C" to explore the meaning of, v
DUI0204HC_rvct_assembler_guide
- ARM汇编程序特点: l 所有运算处理都是发生通用寄存器(一般是R0~R14)的之中.所有存储器空间(如C语言变量的本质就是一个存储器空间上的几个BYTE).的值的处理,都是要传送到通用寄存器来完成.因此代码中大量看到LDR,STR指令来传送值. l ARM汇编语句中.当前语句很多时候要隐含的使用上一句的执行结果.而且上一句的执行结果,是放在CPSR寄存器里,(比如说进位,为0,为负…)-The ARM assembler FEATURES: l all arithmetic
Debugging-with-GDB
- 本资料详细讲述了在嵌入式Linux环境下如何使用GDB来调试C程序,其中包括设置断点、单步执行以及查看某个变量的值等内容-This information describes in detail how the embedded Linux environment using GDB to debug C programs, including setting breakpoints, single stepping, and view the contents of a variable va
lecture2
- μC/OS-II中的任务管理,μC/OS-II提供的另一个系统任务是统计任务OSTaskStat( )。这个统计任务每秒计算一次CPU在单位时间内被使用的时间,并把计算结果以百分比的形式存放在变量OSCPUsage中,以便应用程序通过访问它来了解CPU的利用率,所以这个系统任务OSTaskStat( )叫做统计任务 -μC/OS-II in the Task Manager, μC/OS-II provides another system task is statistical task
samMsg
- Linux编写的一段头文件定义代码,定义程序中使用到的变量和错误代码类型-Linux write custom code section headers, the definition used in the program to the variable and error code type
www
- 基于s5pc100-A8板的智能仓储物联系统,1. M0作为前端信息采集器,通过温湿度、光感等模块实时采集节点所在仓库的环境数据,通过RFID射频刷卡模拟货物出入库,将采集到的数据和货物存储信息通过ZIGBEE无线传输给A8主控板进行数据分析。 2. A8是整个系统的逻辑处理核心,采用多线程架构,线程间使用全局变量、互斥锁、条件变量实现线程同步、互斥、唤醒等动作;分析M0发送来的数据,唤醒相应线程进行短信报警、摄像头抓拍、蜂鸣器、LED灯光报警、出入库等动作,并将数据存入数据库中; 3.
11111
- 一、基础题 (每题4分) 1. 描述C语言内嵌汇编中, __asm__ __volatile__ 这一句的 __volatile__ 的作用是?当修饰变量时volatile什么含义? __volatile__ 表示编译器不要优化代码,后面的指令 保留原样, volatile 是它的别名。-One, the basic topic (4 point per question) 1. Describe the inline assembler, C __asm__ __volatile
allocation
- 在可变分区管理方式下采用最先、最佳和最差适应算法实现主存分配和实现主存回收。-Variable partition management mode, using the first,the best and the worst fit algorithm main memory allocation and recovery of the main memory.