一、思路 基于STM8,按键处理,思路是这样的: 每20ms左右一次去扫描按键,用一个key_now记录当前值,用key_last记录上次的值,如果key_now和key_last同时有效,则开始进行cnt++。 我设定两个阈值,LONG_PRESS为100(100*20ms=2s),SHORT_P...
分类:
其他好文 时间:
2014-07-10 14:08:35
阅读次数:
202
A-synchronized和AB-synchronized传输在1个frame传输完成后地址计算有所不同。 A-synchronized: last array in the frame + SRCCIDX/DSTCIDX AB-synchronized: beginning array in t...
分类:
其他好文 时间:
2014-07-07 20:09:38
阅读次数:
230
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2014-07-07 15:30:23
阅读次数:
169
之前在windows下使用python调用某些模块时都会报错,像这样:C:\Documents and Settings\Administrator>python -m CGIHTTPServerTraceback (most recent call last): File "C:\Python2....
分类:
编程语言 时间:
2014-07-03 09:41:18
阅读次数:
656
XPath获取元素某个属性的值XPath query: clients/attribute::totalXPath获取最后一个元素某个属性的值XPath query: /clients/client[last()]/attribute::order
分类:
其他好文 时间:
2014-07-01 17:02:31
阅读次数:
3735
django模板系统学习笔记之for
在for标签里面,有以下知识点:
forloop.counter
forloop.counter0
forloop.first
forloop.last
forloop.revcounter
forloop.revcounter0
froloop.parentloop
empty
下面我们举例学习:
首先到我们的工程目录下,敲入:
pythonmanage.pyshell
#..
分类:
其他好文 时间:
2014-07-01 10:04:33
阅读次数:
223
关键是在检测到手指移动的时候用mPath.quadTo的方法,android sdk解释是:
Add a quadratic bezier from the last point, approaching control point (x1,y1), and ending at (x2,y2). If no moveTo() call has been made fo...
分类:
移动开发 时间:
2014-07-01 08:07:39
阅读次数:
289
1. 栈(stack)这种数据结构在计算机中是相当出名的。栈中的数据是先进后出的(First In Last Out, FILO)。栈只有一个出口,允许新增元素(只能在栈顶上增加)、移出元素(只能移出栈顶元素)、取得栈顶元素等操作。在STL中,栈是以别的容器作为底部结构,再将接口改变,使之符合栈的....
分类:
其他好文 时间:
2014-06-30 13:53:53
阅读次数:
185
①push_heap算法
下面是push_heap算法的实现细节。该函数接收两个迭代器,用来表现一个heap底部容器(vector)的头尾,并且新元素已经插入到底部的最尾端。
template
inline void push_heap(RandomAccessIterator first,RandomAccessIterator last)
{
//注意,此函数被调用时,新...
分类:
其他好文 时间:
2014-06-30 09:25:57
阅读次数:
239
ajax json 表格排序,分页,自定义每页数量 点击表头可以排序,按照升序或者降序,另外支持多列排序设置每页数量演示 XML/HTML Codetable id='example3'> thead> tr> th>IDth> th>First nameth> th>Last nameth> th>Gradeth> th>Grade 2th> th>Efficie...
分类:
Web程序 时间:
2014-06-30 00:13:41
阅读次数:
262