一、主板检测卡各指示灯说明
BIOS 灯:为BIOS 运行灯、正常工作时应不停闪动
CLK 灯:为时钟灯、正常为常亮
OSC 灯:为基准时钟灯、正常为常亮
RESET 灯:为复位灯、正常为开机瞬间闪一下,然后熄灭
RUN 灯:为运行灯、工作时应不停闪动
+12V、-12V、+5V、+3.3V 灯正常为常亮
二、常见代码检修
1、00、CO、CF、FF 或D1
测BIOS 芯片CS...
分类:
其他好文 时间:
2014-08-21 13:25:34
阅读次数:
212
在java中可有两种方式实现多线程,一种是继承Thread类,一种是实现Runnable接口;Thread类是在java.lang包中定义的。一 个类只要继承了Thread类同时覆写了本类中的run()方法就可以实现多线程操作了,但是一个类只能继承一个父类,这是此方法的局限。下面看例子:复制代码 代...
分类:
移动开发 时间:
2014-08-21 11:19:13
阅读次数:
330
在写程序时有些异步程序只执行一遍就不需要了,为了方便经常会写下面的代码
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
}
}).start();这样new出来的匿名对象会存在一些问题
1.由于是匿名的,无法对它进...
分类:
移动开发 时间:
2014-08-20 21:15:13
阅读次数:
393
1. /etc/wpa_supplicant.config 內容
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="ssid_namef"
psk="password"
key_mgmt=WPA-PSK
}
2. commands
wpa_supplicant ...
分类:
系统相关 时间:
2014-08-20 18:08:12
阅读次数:
305
怎样找到windows 2012 server上的Backup OperatorsPress the Windows + R keys to open the Run dialog, type lusrmgr.msc, and press Enter. NOTE: This file is loc....
Under yourQuartus II folder, go to bin->cygwin->bin folder, select the following files in the list below and then right-click and choose Properties.Un...
分类:
移动开发 时间:
2014-08-20 17:45:02
阅读次数:
308
配置完环境变量的任意目录执行:cocos new mygame1 -p com.colin.mbgame -l cpp -d f:\cocos2dx\mbgame打包cocos compile -p android -j 4cocos run -p android -j 4
分类:
其他好文 时间:
2014-08-20 17:44:42
阅读次数:
179
1 消息循环所在的函数
CWinApp::Run
2 消息类别
Windows Messages
WM_XX前缀开头,但是除了WM_COMMAND消息外。
Control Notifications
包含来自控件或者子窗口发给父窗口的 WM_COMMAND的通知消息。
Command Messages
菜单,工具栏按钮,快捷键
3 消息的发送和接受
CWinApp...
分类:
其他好文 时间:
2014-08-20 16:27:02
阅读次数:
182
Question:I apologize if this is a poor question, but I'm using Windows and looking to see if there's a way to run a webapp via Tomcat where thedocBase...
分类:
其他好文 时间:
2014-08-20 15:45:32
阅读次数:
250
今天在ubuntu14.04.1上安装了Androiddevelopmenttools,直接在官网下载的,解压后打开Eclipse出现了Cannotrunprogram的错误,网上一搜发现是64位系统的问题,在网上overflow找到了如下解决方法:Beforeubuntu12.04,youmustinstallia32-libssudoapt-getinstallia32-libs较新版本..
分类:
系统相关 时间:
2014-08-20 14:26:23
阅读次数:
260