今天把68013A-56焊接在CCD2的CPLD PCB上,配套的EEPROM存储器还没有焊接上,所以想用它试验一下Cypress的基础开发实例。研究了一上午,结果驱动都没装上。
我用一种我没想到的方式解决的这个问题,详见文章尾部叙述。
如果有人能给我一点提醒,非常感谢!Please contact...
分类:
其他好文 时间:
2014-08-18 12:58:52
阅读次数:
1618
android提供了本地数据库的查询uri,可以查询出数据:
采用一个AsyncQueryHandler来进行查询, AsyncQueryHandler自己开启了线程来进行数据查询,很方便
protected AsyncQueryHandler mQueryHandler;
protected final void queryPersonal() {
mQueryHandler....
分类:
移动开发 时间:
2014-08-18 08:05:23
阅读次数:
317
下面写怎么让每个首字母相同的联系人归类展示:
在adapter implement SectionIndexer
这样adapter里必须实现以下3个接口:
@Override
public Object[] getSections() { //section的集合
}
@Override
public int getPositionForSection(int...
分类:
移动开发 时间:
2014-08-18 08:05:03
阅读次数:
345
如果获取contact的头像信息并展示:
如何根据photoId来获取bitmap:
public static Bitmap getContactPhoto(Context context, long photoId, BitmapFactory.Options options) {
if (photoId < 0) {
return null;
...
分类:
移动开发 时间:
2014-08-18 08:04:33
阅读次数:
382
Like most moms today are trying to reduce the amount of sugar and processed foods your child is in contact with the challenge is to come up with gadge...
分类:
其他好文 时间:
2014-08-15 12:35:48
阅读次数:
253
Saving data to a database is ideal for repeating or structured data, such as contact information. This class assumes that you are familiar with SQL da...
分类:
移动开发 时间:
2014-08-11 17:21:12
阅读次数:
521
long groupId = Constant.createGroupId;
ContentValues values = new ContentValues();
for(int i=0,len=Constant.contactList.size();i<len;i++)
{
values.clear();
values.put(Data.RAW_CONTACT_ID,...
分类:
移动开发 时间:
2014-08-09 13:28:08
阅读次数:
421
ItunesConnect→ManagerApps→应用→Contact Us
分类:
移动开发 时间:
2014-08-08 15:13:06
阅读次数:
163
HTTP the client who initiates a transcation by establishing a connection and seding an HTTP request. ? the web server is in no position to contact a clinet or make a callback connection to the cl...
分类:
其他好文 时间:
2014-08-08 06:24:25
阅读次数:
262
var jsontext = '{"firstname":"Jesper","surname":"Aaberg","phone":["555-0100","555-0120"]}'; var contact = JSON.parse(jsontext); document.wri...
分类:
Web程序 时间:
2014-08-07 18:24:50
阅读次数:
179