blob: 3ada476ab1c3baf3d9812dea2cf95e603469d18a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <FreeRTOS.h>
#include <task.h>
#include <stm32f0xx.h>
#include <stdint.h>
#include <stm32f0xx_hal.h>
void task_1() {
// uint8_t led = 1;
while (1) {
// HAL_GPIO_WritePin(GPIOA, GPIO_PIN_5, led);
// led ^= 1;
HAL_GPIO_TogglePin(GPIOA, GPIO_PIN_5);
vTaskDelay(1000 / portTICK_RATE_MS);
}
}
int main() {
HAL_Init();
GPIO_InitTypeDef GPIO_InitStruct;
GPIO_InitStruct.Pin = GPIO_PIN_5;
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);
xTaskCreate(task_1, "task1", 128, NULL, 1, NULL);
vTaskStartScheduler();
}
|