剛才安裝了 FaceTime for Mac
直接點選我的 iPhone 4 的電話號碼
播出去了....
還在半信半疑得時候,
我的手機響了!居然接通了!
不用做任何設定,實在太神奇了....
2010年10月21日 星期四
2010年10月14日 星期四
在 Mac OS X 上跑簡單的 Verilog
下載 MacPorts 並安裝
之後打開 Terminal
輸入:
輸入密碼後,就會自動安裝 iVerilog (Verilog Simulator)
執行方式:
之後打開 Terminal
輸入:
$ sudo port install iverilog
輸入密碼後,就會自動安裝 iVerilog (Verilog Simulator)
執行方式:
$ iverilog -o test ./test.v
$ ./test
2010年10月11日 星期一
Fail to Download Firmware to LPC2103
不知為什麼, 有時候要 Download Firmware to LPC2103 時會出現
下列錯誤訊息:
後來發現要檢查 Options for Target -> Utilities -> Setting 設定:
1. RAM for Algorithm: Star: 0x40000000, Size: 0x0800
2. Programming Algorithm: LPC2000 IAP2 32KB Flash
下列錯誤訊息:
No Algorithm found for: 00000000H - 00001FC3H
Programming skipped!
後來發現要檢查 Options for Target -> Utilities -> Setting 設定:
1. RAM for Algorithm: Star: 0x40000000, Size: 0x0800
2. Programming Algorithm: LPC2000 IAP2 32KB Flash
2010年10月7日 星期四
How to Outputs PDF File from Gnuplot
之前都是直接在 視窗輸出 之後再手動 列印成 PDF File
其實也可以直接輸出 PDF File:
搞定收工。
其實也可以直接輸出 PDF File:
gnuplot> set term pdf (will produce PDF output)
gnuplot> set output "printme.pdf" (output to any filename you use)
gnuplot> replot (recreates plot but you don't see it, goes to file)
搞定收工。
OpenSuSE 11.1 上的 TCL Library
閒閒沒事
把之前在 Mac OS 上 跑的 NAND Flash Static Wear Leveling 的 EV程式
拿到 SuSE 上跑,結果居然 Compile 不起來
發現是 "-ltcl" 無法 link 到 正確的 TCL Library
若將之改為 "-ltcl8.5" 就 OK
嗯
好像是 TCL Library 在 Install 時有問題
自己動手修正:
這樣 "-ltcl" 就 OK 了。
把之前在 Mac OS 上 跑的 NAND Flash Static Wear Leveling 的 EV程式
拿到 SuSE 上跑,結果居然 Compile 不起來
發現是 "-ltcl" 無法 link 到 正確的 TCL Library
若將之改為 "-ltcl8.5" 就 OK
嗯
好像是 TCL Library 在 Install 時有問題
自己動手修正:
$ (cd /usr/lib; sudo ln -s libtcl8.5.o libtcl.o)
$ (cd /usr/lib64; sudo ln -s libtcl8.5.o libtcl.o)
這樣 "-ltcl" 就 OK 了。
訂閱:
文章 (Atom)