The experiment using this program is introduced on "Interface" No.11, CQ publishing Co.,Ltd, 2014. 本プログラムを使った実験は,CQ出版社のインターフェース 2014年11月号で紹介しています.

Dependencies:   mbed

Committer:
CQpub0Mikami
Date:
Tue Jul 15 07:58:44 2014 +0000
Revision:
0:08ddf5ce8234
1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
CQpub0Mikami 0:08ddf5ce8234 1 //--------------------------------------------------------------
CQpub0Mikami 0:08ddf5ce8234 2 // Example of serial communication with PC using USB
CQpub0Mikami 0:08ddf5ce8234 3 //--------------------------------------------------------------
CQpub0Mikami 0:08ddf5ce8234 4
CQpub0Mikami 0:08ddf5ce8234 5 #include "mbed.h"
CQpub0Mikami 0:08ddf5ce8234 6
CQpub0Mikami 0:08ddf5ce8234 7 int main()
CQpub0Mikami 0:08ddf5ce8234 8 {
CQpub0Mikami 0:08ddf5ce8234 9 printf("Hello Nucleo F401RE!\r\n");
CQpub0Mikami 0:08ddf5ce8234 10 printf("SystemCoreClock: %d MHz\r\n\n",
CQpub0Mikami 0:08ddf5ce8234 11 SystemCoreClock/(1000*1000));
CQpub0Mikami 0:08ddf5ce8234 12 }