搜索结果
找到约 774 项符合
start-out 的查询结果
汇编语言 selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0,
selects the mux channel and configures the MAX197 for
second write pulse, written with ACQMOD = 0, termi-
either unipolar or bipolar input range. A write pulse (WR
nates acquisition and starts conversion on WR°Os risin
is restarted.
The ACQMOD bit in the input control byte offer+ CS) can either sta ...
微处理器开发 44b0公版的测试程序
44b0公版的测试程序, *******************************************************
* NAME : 44BINIT.S *
* Version : 10.JAn.2003 *
* Description: *
* C start up codes *
* Configure memory, Initialize ISR ,stacks *
* Initialize C-variables *
* Fill zeros into zero-initialized C-varia ...
微处理器开发 The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t
The AVRcam source files were built using the WinAVR distribution
(version 3.3.1 of GCC). I haven t tested other versions of GCC,
but they should compile without too much difficulty.
* The source files for the AVRcam had the author name and copyright
information added back into them after the judgin ...
Linux/Unix编程 设有父子2个进程共享一个临界资源
设有父子2个进程共享一个临界资源,每个进程循环进入该临界区3次:父进程每次进入临界区后显示“prnt in”,出临界区则显示“prnt out”;子进程每次进入临界区后显示“chld in”出临界区则显示“chld out”。观察运行结果,应该是一个进程出来后另一个才能进去。 ...
Linux/Unix编程 linux下同一个进程中多个定时器实现。简单描述下定时器模块的实现
linux下同一个进程中多个定时器实现。简单描述下定时器模块的实现,有一个manager单例类保存所有CTimer对象,开启一线程运行延迟函数,每次延迟间隔到,扫描保存CTimer的容器,对每个CTimer对象执行减少时间操作,减少到0则执行回调函数。对一次性CTimer,超时则从容器中删除,循环型的将间隔时间重置,不从容器中移除。
CT ...
中间件编程 给出一个非负小数
给出一个非负小数,找出分子不超过M,分母不超过N的最简分数或整数,
使其最接近给出的小数。如果这个分数不唯一,输出‘TOO MANY’。
输入文件格式(closest.in)
第一行,M,N(1<=M,N<=10^9)
第二行,即小数R,(0<R
输出文件格式(closest.out)
仅一行,若解唯一输出 分子 / 分母(整数K写成K/1),否则输出TOO MANY
样例 ...
其他 本程序通过tc2.0和tc3.0编译运行
本程序通过tc2.0和tc3.0编译运行,请在主目录(tc.exe所在的目录)下添加文件out.xia
Symbian Symbian 内存泄露检查及调式教程
Symbian 内存泄露检查及调式教程,Using Hooklogger to find out where a leave() came from
Java书籍 Distributed applications, devices, and services appear in many different arrangements in an enterpr
Distributed applications, devices, and services appear in many different arrangements in an
enterprise. At your company, you probably access data from your intranet services, from
computers distributed throughout the company network, and from services across the firewall out
on the Web. For example, ...
Linux/Unix编程 创建两个生产者进程和两个消费者进程
创建两个生产者进程和两个消费者进程,生产者进程a需要生成10000个整数,每次都将自己的进程号(用getpid()函数获得)和生成的整数放入共享内存中(共享内存大小为64Byte)。生产者b每次从26个英文字母中选一个,并将自己的进程号和选中的字母放入共享内存中,直到26个字母全部都选中。消费者进程c负责从共享内存中读取数据 ...