| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- * @file HW_RESET_ATY.h
- *
- * @param Project DEVICE_GENERAL_ATY_LIB
- *
- * @author ATY
- *
- * @copyright
- * - Copyright 2017 - 2025 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 Familiar functions of soft reset for CMSIS device
- *
- * @version
- * - 1_01_221029 > ATY
- * -# Preliminary version, first Release
- ********************************************************************************
- */
- #ifndef __HW_RESET_ATY_H
- #define __HW_RESET_ATY_H
- #include "INCLUDE_ATY.h"
- /******************************* For user *************************************/
- /******************************************************************************/
- void SoftReset(void);
- void SoftReset_HAL(void);
- void JumpToApp(uint32_t addr);
- void UsbReconnect(void);
- typedef void (*pFunction)(void);
- #endif /* __HW_RESET_ATY_H */
- /******************************** End Of File *********************************/
|