搜索结果

找到约 164 项符合 Init 的查询结果

嵌入式Linux zd1211无线网卡驱动源代码

zd1211无线网卡驱动源代码,网卡为USB接口 你可以把摄像头的驱动在编译内核的时候直接编译进去,然后把内核烧进去,以后我们每次执行应用程序就可以了, 也可以把要执行的应用程序直接写在init.sh里边看一下,那就以后连好摄像头然后一开机,摄像头就会把采集到的图象显示在屏上。 ...
https://www.eeworm.com/dl/653/282482.html
下载: 60
查看: 1195

微处理器开发 使用ATMEL AT91RM9200 CPU SDRAM初始化的一个例子。可以运行

使用ATMEL AT91RM9200 CPU SDRAM初始化的一个例子。可以运行,初始化之后CS1的0x20000000地址可以访问。内部以文件的形式(Init_SDRam.txt)集成了ADS初始化命令配置,使得本工程可以直接下载到0x20000000地址运行,而不必限制于内部RAM。配置文件在AXD->Option->cfgInterface->session file中配置。祝好运,好使的话请给个推 ...
https://www.eeworm.com/dl/655/363321.html
下载: 117
查看: 1063

技术资料 加热PID控制仿真(支持LUA脚本修改算法)

加热PID控制仿真,支持LUA脚本修改算法 function init () e3 = 0 e2 = 0 e1 = 0 e0 = 0 out = 0 end function do_pid ( sv, pv ) e3 = e2 e2 = e1 e1 = e0 e0 = sv - pv pid = kp * e0 pid = pid + ki * (e0 + e1 + e2 + e3) pid = pid + kd * (e0 - e1) out = out + pid if(out1) then out=1 end retur ...
https://www.eeworm.com/dl/874804.html
下载: 5
查看: 3659

单片机编程 温度传感器ds1820的汇编程序

晶振:12M TEMPER_L EQU 36H TEMPER_H EQU 35H TEMPER_NUM EQU 60H FLAG1 BIT 00H DQ BIT P3.3AAA:MOV SP,#70H LCALL GET_TEMPER LCALL TEMPER_COV LJMP AAA NOP ;------------------读出转换后的温度值 GET_TEMPER: SETB DQ ; 定时入口 BCD:LCALL INIT_1820 JB FLAG1,S22 LJMP BCD ; 若DS18B20不存在则返回S22:LCALL DELAY ...
https://www.eeworm.com/dl/502/31487.html
下载: 157
查看: 1070

微处理器开发 使用ATMEL AT91RM9200 CPU SDRAM初始化的一个例子。可以运行

使用ATMEL AT91RM9200 CPU SDRAM初始化的一个例子。可以运行,初始化之后CS1的0x20000000地址可以访问。内部以文件的形式(Init_SDRam.txt)集成了ADS初始化命令配置,使得本工程可以直接下载到0x20000000地址运行,而不必限制于内部RAM。配置文件在AXD->Option->cfgInterface->session file中配置。祝好运,好使的话请给个推 ...
https://www.eeworm.com/dl/655/363323.html
下载: 160
查看: 1085

单片机编程 c51流水灯仿真与程序

对应程序: #include<reg52.h> #define uint unsigned int #define uchar unsigned char uchar code tab[]={ 0x81, 0x42, 0x24, 0x18, }; void delay(uint z) { uint i,j; for(i=z;i>0;i--) for(j=120;j>0;j--); } void init() { P0=0x00; }
https://www.eeworm.com/dl/502/29026.html
下载: 76
查看: 1102

单片机开发 this directory contains the following: * The acdc algorithm for finding the approximate general

this directory contains the following: * The acdc algorithm for finding the approximate general (non-orthogonal) joint diagonalizer (in the direct Least Squares sense) of a set of Hermitian matrices. [acdc.m] * The acdc algorithm for finding the same for a set of Symmetric matrices. [acdc_s ...
https://www.eeworm.com/dl/648/343489.html
下载: 58
查看: 1123

技术资料 TB基准时间计时器

在str750中实现TB基准时间计时器的功能-TB\Debug\Exe\TB.d79 ..\.....\...\TB.sim ..\.....\Obj\75x_cfg.r79 ..\.....\...\75x_eic.r79 ..\.....\...\75x_gpio.r79 ..\.....\...\75x_init.r79 ..\.....\...\75x_it.r79 ..\.....\...\75x_lib.r79 ..\.....\...\75x_mrcc.r79 ..\.....\...\75x_tb.r79 .. ...
https://www.eeworm.com/dl/924096.html
下载: 10
查看: 7245

源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

#include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->ba ...
https://www.eeworm.com/dl/513582.html
查看: 121

技术资料 Modbus通讯笔记注意事项

Modbus寻址Modbus地址通常是包含数据类型和偏移量的5 个或6 个字符值。第一个或前两个字符决定数据类型,最后的四个字符是符合数据类型的一个适当的值。Modbus主设备指令能将地址映射至正确的功能,以便发送到从站。1 Modbus主站寻址Modbus主设备指令支持下列Modbus地址:(1) 00001 至09999是离散输出(线圈)。(2) 10001 ...
https://www.eeworm.com/dl/836348.html
下载: 9
查看: 4120