fuji-usart

Dependencies:   mbed

Committer:
com3
Date:
Sat Feb 22 07:21:26 2014 +0000
Revision:
2:6a8450240660
Parent:
1:05be68058127
usart

Who changed what in which revision?

UserRevisionLine numberNew contents of line
com3 1:05be68058127 1 Serial sensor(p13,p14);
com3 2:6a8450240660 2 Serial pc(USBTX, USBRX);
com3 2:6a8450240660 3
com3 2:6a8450240660 4 int main(){
com3 2:6a8450240660 5 //送信開始
com3 2:6a8450240660 6 sensor.putc(1);
com3 2:6a8450240660 7 //送信空き割り込み設定
com3 2:6a8450240660 8 sensor.attach(&micon_tx,Serial::TxIrq);
com3 2:6a8450240660 9 }