LoginSignup
0
0

More than 1 year has passed since last update.

STM32L010とKeil Studioでどうやったか覚えていないがLチカ

Last updated at Posted at 2022-02-19

x Mbed2です。

目的
Mbedが終了予定の為

いろいろ
何の問題もなくコンパイル出来た。

o_con248.jpg

資料

STM32L010でナイトライダー (Keil)(STM32L010F4P6)

o_con235.jpg

Keil Studio Cloudを使ってみた



#include "mbed.h"

DigitalOut myled(PA_4);

int main() {
  while(1) {
    myled = 1;
    wait(0.2);
    myled = 0;
    wait(0.2);
  }
}


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0