STM32L010をVSCのcubeideでLチカ
4076 ワード
目的
軽量化
物凄く雑な方法で非推奨
初期ブート環境で無理やりLチカさせる。
mainは下記の内容
適当にコピー
main.h
stm32l0xx_hal_conf.h
stm32l0xx_it.h
ヘッダー
#include"main.h"
int main() {
__HAL_RCC_GPIOA_CLK_ENABLE();
GPIO_InitTypeDef GPIO_InitStruct = {0};
GPIO_InitStruct.Pin = GPIO_PIN_4;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
//HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_SET);
while(1) {
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_SET);
for(int ii=0;ii<10000;ii++) for(int jj=0;jj<50;jj++){}
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_RESET);
for(int ii=0;ii<10000;ii++) for(int jj=0;jj<50;jj++){}
}
}
Author And Source
この問題について(STM32L010をVSCのcubeideでLチカ), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/3d536541395a5f522ea2著者帰属:元の著者の情報は、元の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 .