星期日, 5月 29, 2005

Install Mandrakelinux 10.2 Limited Edition 2005

想要 restart super daemon(xinetd restart)
但是找不到 xinetd(想不到安裝的時候沒有安裝這個package)
在 x window 下安裝的步驟
(Configure Your Computer System configuration tool)
(Software Management)
(Look at installable software and install software packages)
選擇 xinetd 安裝(要放安裝光碟)

星期六, 5月 21, 2005

http://www.mega-tokyo.com/osfaq2/index.php/GCC%20Cross-Compiler
http://www.study-area.org/cyril/opentools/opentools/x1075.html
http://www.auditmypc.com/acronym/LZW.asp
http://www.ics.uci.edu/~dan/pubs/DC-Sec5.html
http://www.cs.cf.ac.uk/Dave/Multimedia/node214.html
http://www.elook.org/computing/lempel-ziv-welch-compression.htm
http://www.elook.org/computing/c.htm

星期四, 5月 19, 2005

錯誤

想不到居然會犯這種錯誤

錯誤的:
void f1(char *p)
{
char *string = “Hello”;
p = string;
}

void f2()
{
char *p2;
f1(p2);
printf(p2); \\
輸出絕對不會是 Hello…
}

正確的:
void f1(char **p)
{
char *string = “Hello”;
*p = string;
}
void f2()
{
char *p2;
f1(&p2); //
要記得作取址的動作。
printf(p2);
}


星期二, 5月 17, 2005

6/14, AN2216 application note for MC9S12DP256 Software Development Using Metrowerks Codewarrior

7/5, TFTP and its related security policy

星期日, 5月 15, 2005

On-line Learning Web Site

account: company's e-mail address
max2bear
http://www.embeddedlearningcenter.com/scripts
/tol.exe?SID,4045.19399.20050515&CONFIG,pc-freescale.
txt&TEMPLATE,pc_main.ops&AREA,39&obj,14

Forum:
http://www.freegeeks.net/
modules.php?name=Forums&file=viewforum&f=5

星期一, 5月 09, 2005

全世界的人都要離職了……
哎………需要再待在這個不成熟的軟體部門嘛


終於知道諸葛亮為什麼不再扶持阿斗了
因為阿斗是扶不起來的

星期三, 5月 04, 2005

LZW Data Compression.

初當LCD要作支援多國語系…瘋狂的PM把LCD的支援語系定為6種
哈哈…人算不如天算…現在除了英文以外多加個中文都成問題。
雖然這個MCU的ROM size是128kB,但是能作為data segment的只有32kB
即使再換成256kB也是一樣的.....
為了要實現多國語系…所以只好將字串壓縮了
在MCU作initialize前把資料解壓縮出來用

http://www.dogma.net/markn/articles/lzw/lzw.htm

這個壓縮algorithm是針對字串的…有現成的code,而且也不複雜。
是Dr. Hsu告訴我的...