一、打开BRD文件打开PCB SI,启动Cadence Product
Choices界面,如图1-1所示,一般我们选择Allegro PCB SI
630(SPECCTRAQuest),具体如下图所示:接着,选择File->Open,打开所要仿真的BRD文件,此时,出现下图所示界面:二、模型库添加...
分类:
其他好文 时间:
2014-05-21 20:44:48
阅读次数:
449
介绍一个grid layout 顺序显示的代码
LayoutAnimation1.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use th...
分类:
其他好文 时间:
2014-05-21 16:58:47
阅读次数:
214
jdbc
jdbc:oracle:thin:@localhost:152...
分类:
系统相关 时间:
2014-05-21 10:57:22
阅读次数:
287
一. 首先在xml添加ViewPager控件
我们希望每个viewpager显示一张图片
新建一个pager_item.xml的文件
代码如下
二.分析
一个ViewPager需要设置一个适配器,这个适配器可以继承FragmentStatePagerAdapter,
适配器同样需要设置数据,这个为适配器添...
分类:
移动开发 时间:
2014-05-21 09:54:09
阅读次数:
254
1、导入jar
2、web.xml配置
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://ja...
分类:
编程语言 时间:
2014-05-21 09:06:23
阅读次数:
484
描述list layout item有上倒下依次显示的代码实现形式
LayoutAnimation2.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may no...
分类:
其他好文 时间:
2014-05-21 09:02:15
阅读次数:
250
介绍list item倒序显示
LayoutAnimation3.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file e...
分类:
其他好文 时间:
2014-05-21 08:25:44
阅读次数:
278
<!--
Mapping file autogenerated by MyEclipse Persiste...
分类:
其他好文 时间:
2014-05-21 08:21:42
阅读次数:
240
POSIX共享内存相关函数:
shm_open函数
功能:用来创建或打开一个共享内存对象
原型
int shm_open(const char *name, int oflag, mode_t mode);
参数
name:共享内存对象的名字
oflag:与open函数类似,可以是O_RDONLY、O_RDWR,还可以按位或上O_CREAT、O_EXCL、O_T...
分类:
其他好文 时间:
2014-05-21 07:38:19
阅读次数:
324
POSIX消息队列相关函数:
mq_open函数
功能:用来创建和访问一个消息队列
原型
mqd_t mq_open(const char *name, int oflag);
mqd_t mq_open(const char *name, int oflag, mode_t mode, struct mq_attr *attr);
参数
name: 某个消息队列...
分类:
其他好文 时间:
2014-05-21 06:35:08
阅读次数:
316