STM32F303K8을 VSC의 cubeide로 L치카
경량화
굉장히 어색한 방법으로 비추천
초기 부트 환경에서 무리하게 L치카시킨다.
main은 아래 내용
적당하게 복사
main.h
stm32f3xx_hal_conf.h
stm32f3xx_it.h
헤더
#include"main.h"
int main() {
__HAL_RCC_GPIOB_CLK_ENABLE();
GPIO_InitTypeDef GPIO_InitStruct = {0};
GPIO_InitStruct.Pin = GPIO_PIN_3;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_SET);
while(1) {
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_SET);
for(int ii=0;ii<10000;ii++) for(int jj=0;jj<50;jj++){}
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_RESET);
for(int ii=0;ii<10000;ii++) for(int jj=0;jj<50;jj++){}
}
}
Reference
이 문제에 관하여(STM32F303K8을 VSC의 cubeide로 L치카), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/caa45040/items/74b51fa6fa55ce7a6fa8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)