stm32f4-discoveryの作法 その9
1093 ワード
概要
stm32f4-discoveryの作法、調べてみた。
豊四季タイニーBASIC Arduino版、移植してみた。
写真
移植
putchとgetchを書いた。
uint8_t rx_buffer[20];
void putch(char c)
{
char * p = "a";
p = &c;
uart_2_send(p, 1);
}
char getch()
{
if (uart_2_is_interupt())
{
uart_2_clear_interupt();
int length = uart_2_get(rx_buffer);
return rx_buffer[0];
}
return;
}
サンプルコード
10 FOR I=1 TO 100
20 F=I/3*3=I
30 B=I/5*5=I
40 IF F PRINT "fizz",
50 IF B PRINT "buzz",
60 IF F+B=0 PRINT I,
70 PRINT
80 NEXT I
10 FOR I=1 TO 100
20 F=I/3*3=I
30 B=I/5*5=I
40 IF F PRINT "fizz",
50 IF B PRINT "buzz",
60 IF F+B=0 PRINT I,
70 PRINT
80 NEXT I
以上。
Author And Source
この問題について(stm32f4-discoveryの作法 その9), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/4d97bf3ec8b609c15d18著者帰属:元の著者の情報は、元の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 .