No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a recent enough version of iOS to run your application or choose an iOS simulator as the destination....
分类:
移动开发 时间:
2014-06-07 01:56:57
阅读次数:
361
本程序主要测试:
context = clCreateContext(NULL, 1, &device, NULL, NULL, &err);
创建一个context
clRetainContext(context);//Context的reference +1
clReleaseContext(context);//Context的reference -1
#inc...
分类:
其他好文 时间:
2014-06-05 07:04:25
阅读次数:
265
??
从视频序列中抓取一帧
OpenCV支持从摄像头或视频文件(AVI)中抓取图像.从摄像头获取初始化:
CvCapture* capture = cvCaptureFromCAM(0); // capture from video device #0
从视频文件获取初始化:
CvCapture* capture = cvCaptureFromAVI("infile.avi");...
分类:
其他好文 时间:
2014-06-05 06:06:49
阅读次数:
196
AUTOLIST
线程阻塞,命令发送后,会等待viewserver反馈结果。viewserver在检测到界面跳转以后才会回馈结果。
private class WindowChangeMonitor implements Runnable {
private IDevice device;
public WindowChangeMonitor(IDevice devi...
分类:
其他好文 时间:
2014-06-05 01:11:43
阅读次数:
213
查询rman备份信息常用指令
----登陆到rman
$rman target /
----以精简的格式查看备份信息
RMAN> list backup of database summary;
List of Backups
===============
Key TY LV S Device Type Completion Time#Pieces #Copies Co...
分类:
其他好文 时间:
2014-06-05 01:06:36
阅读次数:
383
之前移植了6410后,就没有测试过,今天编写程序烧进去后运行才发现触摸屏不起作用。
于是试了下系统里tslib的bin文件夹下的命令:
./ts_caliberate
结果总是报错:selected device is not a touchscreen I understand
先去飞凌的官方论坛逛了一圈,好多人有这个问题,但没一个解决办法有效。
先用cat命令试了下几个event...
分类:
其他好文 时间:
2014-06-05 01:04:27
阅读次数:
321
今天看到下面这两个函数:struct resource
*platform_get_resource(struct platform_device *dev, unsigned int type, unsigned
int num){ int i; for (i = 0; i n...
分类:
系统相关 时间:
2014-06-02 22:15:28
阅读次数:
438
设置IP#vi /etc/syssconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 设备名称 BOOTPROTO=static 设置IP方式,动态还是静态 HWADDR=
这里是你网卡的物理地址,通常检测到的网卡你就不用...
分类:
系统相关 时间:
2014-06-02 21:45:09
阅读次数:
384
写一份赏心悦目的工程文档,是很困难的事情。若想写得完善,不仅得用对工具(use the right
tools),注重文笔,还得投入大把时间,真心是一件难度颇高的事情。但,若是真写好了,也是善莫大焉:既可让人明白「为何如此设计」,即「知其然更知其所以然」;也能剥离一些琐碎的细节,让更多没那么多时间与...
分类:
数据库 时间:
2014-06-02 21:24:16
阅读次数:
486
要想ssh远程登录,需要准备两件事:配置同网段IP和开启SSH服务。
由于live系统没有IP,所以首先需要配置IP。
我的live系统是在虚拟机上启动的,宿主IP为192.168.230.1,live系统的IP我设置为192.168.230.180:
#ifconfig eth0 192.168.230.180
然后在SecurityCRT上连接live系统,输入密码时发现liv...
分类:
系统相关 时间:
2014-06-01 10:32:07
阅读次数:
304