码迷,mamicode.com
首页 >  
搜索关键字:timer    ( 2931个结果
Android软键盘隐藏,遮挡EidtText解决办法
一、自动弹出软键盘Timertimer=newTimer();timer.schedule(newTimerTask(){publicvoidrun(){InputMethodManagerinputMethodManager=(InputMethodManager)getSystemService...
分类:移动开发   时间:2014-05-27 00:07:18    阅读次数:434
cc2530 timer 3 PWM <可调占空比>
前提: 开始用的是 cc2530 timer 1来做PWM的,已经可调占空比了,但是由于硬件的改动,需要用timer 3 和 timer 4 代替。由于调试过程中出了些小问题,于是自己把这个贴出来。关键点注释出来。说说 硬件吧: timer 1 P1_0 口timer 3 P1_6 P1_7...
分类:其他好文   时间:2014-05-27 00:03:43    阅读次数:612
Creating a Timer
【Creating a Timer】 Even if you specify a leeway value of 0, you should never expect a timer to fire at the exact nanosecond you requested. The system....
分类:其他好文   时间:2014-05-26 16:21:39    阅读次数:338
NSTimer是不一定准时
NSTimer是不一定准时的,是有可能被delay的,每次间隔的时间是不一定一样的。A repeating timer reschedules itself automatically based on the scheduled firing time, not the actual firing...
分类:其他好文   时间:2014-05-26 10:03:30    阅读次数:230
51系列小型操作系统精髓 简单实现10 C语言版优化后发布(有图)
4个任务   /* 使用keil4 可运行8个任务 任务从rtos_wait()处切换,在定时时间到后从定时中断中切换回来。 */ #include "STC12C5A.H" #define TIMER_RELOAD() {TL0=0x00;TH0=0xC4;}//使能T/C 初始10ms #define MAX_TASKS 8 //任务槽最大个数. unsig...
分类:编程语言   时间:2014-05-25 02:03:17    阅读次数:293
一个有趣的Timer应用
import java.util.Date; import java.util.Timer; import java.util.TimerTask; public class TraditionalTimerTest { static int count; public static void main(String[] args) { class MyTimerTask exte...
分类:其他好文   时间:2014-05-23 01:45:11    阅读次数:226
51系列小型操作系统精髓 简单实现7 C语言版待改进
#include "STC12C5A.H" #define TIMER_RELOAD()  {TL0=0x00;TH0=0xC4;}//使能T/C  初始10ms #define MAX_TASKS 2 //任务槽最大个数. unsigned char idata task_stack[MAX_TASKS][2];//任务堆栈.  PC指针为16位,需2个字节task_st...
分类:编程语言   时间:2014-05-23 00:03:19    阅读次数:341
Android多线程研究(2)——定时器
先来看一段代码: public static void main(String[] args) { new Timer().schedule(new TimerTask() { @Override public void run() { System.out.println("阳光小强"); } }, 5000); int i = 0; wh...
分类:移动开发   时间:2014-05-21 16:56:51    阅读次数:296
uip 作为tcp sever 流程测试
之前用过uip作为udp使用,但将它作为server还没有涉及到,最近有个小项目中需要使用。以下针对它作为tcp_server流程测试和探索。 struct timer periodic_timer, arp_timer;   //struct uip_udp_conn myUdp_Con; //struct uip_udp_conn *pMyUpd_Con; //...
分类:其他好文   时间:2014-05-21 08:51:30    阅读次数:490
51系列小型操作系统精髓 简单实现6 C语言版待改进
#include "STC12C5A.H" #define TIMER_RELOAD()  {TL0=0x00;TH0=0xC4;}//使能T/C  初始10ms #define MAX_TASKS 8 //任务槽最大个数. unsigned char idata task_stack[MAX_TASKS][2];//任务堆栈.  PC指针为16位,需2个字节。 unsi...
分类:编程语言   时间:2014-05-21 08:12:12    阅读次数:285
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!