邱小新の單晶片筆記
主要是分享 Intel 8051/8052 實作上的筆記。曾經使用的單晶片有 Windbond W79E632、W78E65、W77E352 及 Weltrend WT61P9。
Google 站內搜尋
自我介紹
新增文章
部落設定
版面配置
bin2bcd bcd2bin
Posted
by: 邱小新
at 下午4:49
in
apps
int bin2bcd (int x) { return (x%10) | ((x/10) << 4); }
int bcd2bin (int x) { return (x >> 4) * 10 + (x & 0x0f); }
0 意見
張貼留言
較新的文章
較舊的文章
字體變化
❒
放大字體
❒
縮小字體
網誌分類
8051
(11)
8052
(6)
apps
(14)
datasheet
(2)
ip210s
(4)
keil
(14)
Paradigm
(7)
protocol
(10)
SDCC
(40)
W77E352
(7)
W78E65
(2)
W79E632
(19)
WT61P9
(4)
網誌迷踪
►
2012
(
3
)
►
1月
(
3
)
►
2011
(
11
)
►
12月
(
11
)
▼
2010
(
23
)
►
8月
(
1
)
►
7月
(
7
)
►
6月
(
4
)
►
5月
(
1
)
▼
3月
(
3
)
S35390A driver for 8051 part 2
bin2bcd bcd2bin
S35390A driver for 8051 part 1
►
2月
(
2
)
►
1月
(
5
)
►
2009
(
69
)
►
12月
(
5
)
►
10月
(
2
)
►
9月
(
5
)
►
8月
(
5
)
►
7月
(
1
)
►
6月
(
4
)
►
5月
(
1
)
►
4月
(
21
)
►
3月
(
25
)
熱門文章
I2C protocol 原理及應用
紅外線感應器
二的補數 (電腦負數表示法)
8051 Timer
PWM (Pulse Width Modulation) 原理與應用
8051 interrupt
ir remote control NEC protocol
8051 clock
8051 外部中斷 (external interrupt)
8051 UART
載入中…
廣告展示
網誌訊息
邱小新の一言堂
證券公司定期定額手續費
18 小時前
邱小新の博客實驗
javascript change url port
1 個月前
邱小新の工作筆記
Realtek DFS command
1 年前
邱小新の投資實錄
永豐銀行-南非幣買賣實錄
12 年前
邱小新の閱讀手札
Java 的真相 -- 避開學習 Java 的陷阱與迷思
13 年前
邱小新の專案報告
Thread-safe Versions of POSIX.1 and C-language Functions
15 年前
總網頁瀏覽量
張貼留言