|
while(1) HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_13); HAL_Delay(1000); Bookmark this article, collect the PDFs, and write your first line of embedded C today. The world runs on STM32—be part of it. // Enable clock for GPIOC (RM0008, Section 7.3.7) RCC->APB2ENR |= (1 << 4); // Configure PC13 as push-pull output (Section 8.2.2) GPIOC->CRH |= (0x3 << 20); // CNF = 00, MODE = 11 (50 MHz output) while(1) GPIOC->BSRR = (1 << 13); // Set high delay(1000000); GPIOC->BRR = (1 << 13); // Reset low delay(1000000); The Hardware Abstraction Layer (HAL) allows faster prototyping: Получать новости
Статистика сайта
Hits
112687160
32857
Hosts
4977438
247
Visitors
109264863
32724
427
|
And Embedded Systems Pdf — The Stm32f103 Arm Microcontroller
Скачать ZwCAD
|
And Embedded Systems Pdf — The Stm32f103 Arm Microcontrollerwhile(1) HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_13); HAL_Delay(1000); Bookmark this article, collect the PDFs, and write your first line of embedded C today. The world runs on STM32—be part of it. the stm32f103 arm microcontroller and embedded systems pdf // Enable clock for GPIOC (RM0008, Section 7.3.7) RCC->APB2ENR |= (1 << 4); // Configure PC13 as push-pull output (Section 8.2.2) GPIOC->CRH |= (0x3 << 20); // CNF = 00, MODE = 11 (50 MHz output) Bookmark this article while(1) GPIOC->BSRR = (1 << 13); // Set high delay(1000000); GPIOC->BRR = (1 << 13); // Reset low delay(1000000); collect the PDFs The Hardware Abstraction Layer (HAL) allows faster prototyping: |