0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vistaでstm32duino その5

Last updated at Posted at 2021-10-19

概要

vistaでstm32duinoやってみた。
Lチカ、やってみた。

♯サンプルコード

void setup() {
	pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
	digitalWrite(LED_BUILTIN, HIGH);
	delay(1000);
	digitalWrite(LED_BUILTIN, LOW);
	delay(1000);
}


最初に、USBにつなぐと

HIDとなる。

BOOT0を押しながら、RESETすると

DFUとなる。

コンパイルエラー

STM32_Programmer_CLI.exe not found.
Please install it or add <STM32CubeProgrammer path>\bin' to your PATH environment:
https://www.st.com/en/development-tools/stm32cubeprog.html
Aborting!
スケッチの書き込み中にエラーが発生しました



path通した。

C:\Program Files\STMicroelectronics\STM32Cube\STM32CubeProgrammer\bin

LED_BUILTIN

PC13
HIGHでLED消灯、LOWでLED点灯。

arduino ideの設定。

ide.jpg

以上。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?