虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

SLEEP

  • Chart-04-----端口应用 Chart-05-----中断优先级处理 Chart-06-----SPI/IIC应用 Chart-07-----串口通讯应用 Chart-08-----端

    Chart-04-----端口应用 Chart-05-----中断优先级处理 Chart-06-----SPI/IIC应用 Chart-07-----串口通讯应用 Chart-08-----端口RB应用 Chart-09-----TMR0/TMR1应用 Chart-10-----AD转换 Chart-11-----CCP1/PWM Chart-12-----CAN通讯 Chart-13-----液晶显示 Chart-14-----WDT/SLEEP/EEPROM Chart-15-----ECCP1/PWM全桥/半桥 Chart-16-----PSP/Master/slave

    标签: Chart SPI IIC 04

    上传时间: 2013-12-12

    上传用户:woshini123456

  • C5509A的IDLE用法.在C5509A的中

    C5509A的IDLE用法.在C5509A的中,当DSP通过I2C从MCU接收到SLEEP命令时,需要进入休眠状态。

    标签: C5509A IDLE

    上传时间: 2014-01-05

    上传用户:gououo

  • 用AVR单片机设计的MP3播放器 功能: MP3 Player IDE ATA interface FAT 32 with long file name support USB

    用AVR单片机设计的MP3播放器 功能: MP3 Player IDE ATA interface FAT 32 with long file name support USB interface On board power supply (input from 7v to 20v DC) Bootloader firmware upgradeable via USB port Infrared bi-directional interface Remote Control Back light graphic LCD worked with only 2x AA batteries In SLEEP mode sink less than 1uA (2.5mA in active mode) 5 buttons for easy navigation Long range (more than 20 feets)

    标签: MP3 interface support Player

    上传时间: 2016-07-02

    上传用户:fandeshun

  • 利用PIC18f452系列寫的計時器中斷練習程式

    利用PIC18f452系列寫的計時器中斷練習程式,其中包含了如何進入SLEEP的範例解說。

    标签: f452 PIC 18f 452

    上传时间: 2016-10-08

    上传用户:cx111111

  • procedure senddata var i:integer commflg : Boolean begin commflg:=true for i:=1

    procedure senddata var i:integer commflg : Boolean begin commflg:=true for i:=1 to 8 do begin if not fcomm comml writecommdata(sendbutter,i) then begin Commflg=false break end end end (4) 接收数据 在编写基于串口的计算机工业测控时,通常需要由下位机向PC机发送数据以使PC机了解系统的测试数据或下位机的运行状态,并进而控制下位机的行为。利用Spcomm串口控件接收下位机发送的数据信息的示例代码如下: //事件驱动方式接收数据程序 procedure TForm1.CommlReceiveData(Sender:Tobject Buffer:Pointer bufferLength:Word) var receivedata:array of byte begin SLEEP(100) //等待100ms,保证接收到所有数据 move(buffef ,receivedata,bufferlength) //将接收缓存区中的数据转移到数组中 …… end (5) 关闭串口 在系统开发中,应注意在不使用串口时应及时关闭串口,释放系统资源,否则可能会影响系统的其它应用。关闭串口的代码如下: procedure TForm1.FormClose ( Sender TObj ect:var Action:TCIoseAction ) begin comml.StopComm end

    标签: commflg procedure senddata integer

    上传时间: 2014-01-26

    上传用户:懒龙1988

  • java面试笔试题大汇总 ~很全面 java面试笔试题大汇总 第一

    java面试笔试题大汇总 ~很全面 java面试笔试题大汇总 第一,谈谈final, finally, finalize的区别。   最常被问到。   第二,Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?   第三,Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。   第四,&和&&的区别。 这个问得很少。     第五,HashMap和Hashtable的区别。   常问。     第六,Collection 和 Collections的区别。   你千万别说一个是单数一个是复数。     第七,什么时候用assert。   API级的技术人员有可能会问这个。     第八,GC是什么? 为什么要有GC?   基础。     第九,String s = new String("xyz") 创建了几个String Object?     第十,Math.round(11.5)等於多少? Math.round(-11.5)等於多少?     第十一,short s1 = 1 s1 = s1 + 1 有什么错? short s1 = 1 s1 += 1 有什么错?   面试题都是很变态的,要做好受虐的准备。     第十二,SLEEP() 和 wait() 有什么区

    标签: java 笔试题

    上传时间: 2017-05-20

    上传用户:坏坏的华仔

  • NEC-SIRCS-JAPAN-RC5-SAMSUNG compatible, multiprotocol infrared remote control. Replaces up to 6

    NEC-SIRCS-JAPAN-RC5-SAMSUNG compatible, multiprotocol infrared remote control. Replaces up to 6 existing remote controls into one. With manual learning function, LED display and/or LCD. 2V6-3V2, low power (SLEEP function) More protocols will be added later if needed (DENON, DAEWOO, MOTOROLA, RECS80.)

    标签: NEC-SIRCS-JAPAN-RC multiprotocol compatible Replaces

    上传时间: 2017-05-27

    上传用户:3到15

  • a simple thread program to print numbers it can be synchronized with operating system tickms by inc

    a simple thread program to print numbers it can be synchronized with operating system tickms by including t1.SLEEP(1000) <time in milliseconds> in the ADD() method

    标签: synchronized operating program numbers

    上传时间: 2017-06-21

    上传用户:ANRAN

  • java 线程 静态锁

    java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.SLEEP(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }

    标签: java 线程

    上传时间: 2017-07-15

    上传用户:lijianyu172

  • #include <avr/io.h> #include <avr/interrupt.h> #include <avr/signal.h> #include

    #include <avr/io.h> #include <avr/interrupt.h> #include <avr/signal.h> #include <avr/SLEEP.h> #include <avr/pgmspace.h> #include <string.h> #include <util/delay.h> #include <avr/eeprom.h> #include <stdio.h> #include "defines.h"

    标签: include avr interrupt gt

    上传时间: 2017-07-31

    上传用户:diets