vistaでstm32duino その5
1406 ワード
概要
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!
スケッチの書き込み中にエラーが発生しました
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の設定。
以上。
Author And Source
この問題について(vistaでstm32duino その5), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/91350a1d96036b639545著者帰属:元の著者の情報は、元の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 .