stw24/Core/Src/app.c

14 lines
219 B
C
Raw Normal View History

2023-03-05 21:24:12 +01:00
#include "app.h"
#include "stm32h7xx_hal.h"
#include "tx_api.h"
#include "main.h"
void app_thread_entry(ULONG _) {
while (1) {
HAL_GPIO_TogglePin(STATUS1_GPIO_Port, STATUS1_Pin);
tx_thread_sleep(50);
}
}