STM32L010のシリアルでHello Worldと出力 (RawSerial)
目的
動きそうだから動かしてみた
x mbedのリビジョンは、125
忙しい人よう
https://os.mbed.com/users/caa45040/code/serial_raw_test_010/
#include "mbed.h"
//Serial pc(USBTX, USBRX); // tx, rx
//Serial pc(SERIAL_TX, SERIAL_RX); //767
RawSerial pc(PA_2, PA_3); //010
int main() {
char *ss1; //文字のポインター
int ii; //ループカウンター
//無限ループ
while(1) {
ss1="Hello World !\r\n";
ii=0; //ループカウンター
while(ss1[ii]!=0){
//一文字出力
pc.putc(ss1[ii]);ii++;
} //while
//1秒の待ち
wait_ms(1000);
} //while
} //main
//容量削減
void error(const char* format, ...){}
Author And Source
この問題について(STM32L010のシリアルでHello Worldと出力 (RawSerial)), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/85981586453dc412f738著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .