| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * @file LED_ATY.h
- *
- * @param Project DEVICE_GENERAL_ATY_LIB
- *
- * @author ATY
- *
- * @copyright
- * - Copyright 2017 - 2026 MZ-ATY
- * - This code follows:
- * - MZ-ATY Various Contents Joint Statement -
- * <a href="https://mengze.top/MZ-ATY_VCJS">
- * https://mengze.top/MZ-ATY_VCJS</a>
- * - CC 4.0 BY-NC-SA -
- * <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
- * https://creativecommons.org/licenses/by-nc-sa/4.0/</a>
- * - Your use will be deemed to have accepted the terms of this statement.
- *
- * @brief functions of LED blink for C platform
- *
- * @version
- * - 1_01_220901 > ATY
- * -# Preliminary version, first Release
- * - 1_04_251114 > ATY
- * -# remove breath type
- ********************************************************************************
- */
- #ifndef __LED_ATY_H
- #define __LED_ATY_H
- #include "INCLUDE_ATY.h"
- /******************************* For user *************************************/
- /******************************************************************************/
- struct LED_ATY_Dev{
- uint32_t ledBlinkStep;
- uint8_t ledBlinkType;
- void (*ioSet)(uint8_t level);
- uint8_t longSteps;
- uint8_t lock;
- };
- uint8_t SysLedBlink(struct LED_ATY_Dev* dev);
- #endif /* __LED_ATY_H */
- /******************************** End Of File *********************************/
|