You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
534 B

/** \file app_gpio_led.h */
#if !defined(APP_GPIO_LED_H__2317E4D0_AD00_4A5E_A3DE_D2D8A0546351__INCLUDED_)
#define APP_GPIO_LED_H__2317E4D0_AD00_4A5E_A3DE_D2D8A0546351__INCLUDED_
#include "board_config.h"
typedef enum
{
APP_LED_1,
APP_LED_MAX,
}APP_LED_LIST;
typedef enum
{
APP_LED_MODE_OFF,
APP_LED_MODE_ON,
APP_LED_MODE_TOGGLE,
}APP_LED_MODE;
void App_Led_Initialization(void);
void App_Led_OutputSet(APP_LED_LIST app_led_index, APP_LED_MODE app_led_mode, uint32_t OnTime, uint32_t OffTime);
#endif