一般的配置方法过程如下:
1、安装软件
sudo apt-get install minicom
2、查看端口
找到端口:
这里要注意下,我们用的是USB 转串口,所以其设备是名称要注意,输入以下命令找到USB转串口的位置
dmesg | grep usb
假如有以下内容:
[ 7415.893942] usbserial: USB Serial Driver core ...
分类:
其他好文 时间:
2014-06-09 23:29:39
阅读次数:
242
方法一:1. 使用USB数据线连接设备。2. 命令输入adb tcpip 5555 (
5555为端口号,可以自由指定)。3. 断开 USB数据,此时可以连接你需要连接的|USB设备。4. 再命令输入 adb connect
:5555后面就可以使用ADB ,DDMS 来调试Android应用或显示...
分类:
移动开发 时间:
2014-06-09 22:28:14
阅读次数:
411
In general classpath is the path where JVM can
find .class files and resources of your application and in this tutorial we will
see how to load resour...
分类:
编程语言 时间:
2014-06-08 22:20:57
阅读次数:
371
ArcGIS10.2.1精简版、ArcGIS_Desktop10_Tutorial、破解文件等下载地址
分类:
其他好文 时间:
2014-06-08 20:42:47
阅读次数:
301
Develop Tools: xCode 5.1I write a demo for app
settings feature. The tutorial url is here.When I add a icon into app icon and
build the code, I got th...
分类:
移动开发 时间:
2014-06-08 20:39:03
阅读次数:
1920
以下是详解Spring的applicationContext.xml文件代码:
com.mysql.jdbc.Driver
jdbc:mysql://localhost:3306/tie?hao947=true&characterEncoding=utf-8
...
分类:
移动开发 时间:
2014-06-08 17:08:16
阅读次数:
193
本文翻译了这篇文章:Using the Android action bar (ActionBar) - Tutorial
1、ActionBar的简介
ActionBar位于Activity的顶部,可用来显示activity的标题、Icon、Actions和一些用于交互的View。它也可被用于应用的导航。
ActionBar 是在Android 3.0(API 11)中加入到SK中的,...
分类:
移动开发 时间:
2014-06-08 15:27:58
阅读次数:
349
翻译自官方文档Tentative NumPy Tutorial,有删节。
Numpy 入门教程
NumPy 提供了对多维数组的支持,与Python原生支持的List类型不同,数组的所有元素必须同样的类型。数组的维度被称为axes,维数称为 rank。
Numpy的数组类型为 ndarray, ndarray 的重要属性包括:
ndarray.ndim:数组的维数,也称为rank...
分类:
其他好文 时间:
2014-06-08 15:15:05
阅读次数:
431
翻译自官方文档Tentative NumPy Tutorial,有删节。
基本操作
基本的算术运算符都可以应用于数组类型,结果为对应元素之间的运,返回值为一个新的数组。
>>> a = array( [20,30,40,50] )
>>> b = arange( 4 )
>>> b
array([0, 1, 2, 3])
>>> c = a-b
>>> c
array([20,...
分类:
其他好文 时间:
2014-06-08 09:11:14
阅读次数:
222
最近需要在node下连接mongo,尝试了很多方法,本文简要总结一下选择Driver首先,基本上有4个常见的driver供选择1.官方的是node-mongo-native2.基于node-mongo-native,封装的mongoose,是一个ODM小框架3.kiss小组同样基于node-mong...
分类:
其他好文 时间:
2014-06-07 21:03:54
阅读次数:
320