/**
* @file LED_ATY.h
*
* @param Project DEVICE_GENERAL_ATY_LIB
*
* @author ATY
*
* @copyright
* - Copyright 2017 - 2023 MZ-ATY
* - This code follows:
* - MZ-ATY Various Contents Joint Statement -
*
* https://mengze.top/MZ-ATY_VCJS
* - CC 4.0 BY-NC-SA -
*
* https://creativecommons.org/licenses/by-nc-sa/4.0/
* - Your use will be deemed to have accepted the terms of this statement.
*
* @brief functions of LED for all embedded device
*
* @version
* - 1_01_220901 > ATY
* -# Preliminary version, first Release
********************************************************************************
*/
#ifndef __LED_ATY_H
#define __LED_ATY_H
#include "INCLUDE_ATY.h"
#include "HW_GPIO_ATY.h"
#include "HW_UART_ATY.h"
/******************************* For user *************************************/
// #define __DEBUG_LED_ATY
#define LED_LONG_STEPS 20
/******************************************************************************/
extern uint32_t ledBlinkStep;
extern uint8_t ledBlinkType;
void SysLedBlink(void);
#endif /* __LED_ATY_H */
/******************************** End Of File *********************************/