Fire_RT1052_Pro_AzRTOS_Hello/src/app_thr_hello.c

21 lines
470 B
C

/* Board */
#include "pin_mux.h"
/* SDK drivers */
#include "fsl_common.h"
#include "fsl_gpio.h"
/* ThreadX */
#include "tx_api.h"
/* App */
#include "app_thr.h"
void hello_task(ULONG thread_input) {
for (;;) {
GPIO_PinWrite(BOARD_INITCLEDPINS_LED_R_GPIO, BOARD_INITCLEDPINS_LED_R_GPIO_PIN, 1);
tx_thread_sleep(750);
GPIO_PinWrite(BOARD_INITCLEDPINS_LED_R_GPIO, BOARD_INITCLEDPINS_LED_R_GPIO_PIN, 0);
tx_thread_sleep(250);
}
}