| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /******************************************************************************
- * Copyright (C) 2021, Xiaohua Semiconductor Co., Ltd. All rights reserved.
- *
- * This software component is licensed by XHSC under BSD 3-Clause license
- * (the "License"); You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************/
- /******************************************************************************
- * @file reset.h
- *
- * @brief Header file for RESET functions
- *
- * @author MADS Team
- *
- ******************************************************************************/
- #ifndef __RESET_H__
- #define __RESET_H__
- /******************************************************************************
- * Include files
- ******************************************************************************/
- #include "ddl.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /**
- ******************************************************************************
- ** \defgroup ResetGroup Reset (RST)
- **
- ******************************************************************************/
- //@{
- /**
- *******************************************************************************
- ** function prototypes.
- ******************************************************************************/
- /*******************************************************************************
- * Global definitions
- ******************************************************************************/
- /**
- *******************************************************************************
- ** \brief 外设复位控制类型定义
- ** \note
- ******************************************************************************/
- typedef enum en_sysctrl_peripheral0
- {
- ResetMskUart0 = 1u<<0u, ///< 串口0
- ResetMskUart1 = 1u<<1u, ///< 串口1
- ResetMskLpUart0 = 1u<<2u, ///< 低功耗串口0
- ResetMskLpUart1 = 1u<<3u, ///< 低功耗串口1
- ResetMskI2c0 = 1u<<4u, ///< I2C0
- ResetMskI2c1 = 1u<<5u, ///< I2C1
- ResetMskSpi0 = 1u<<6u, ///< SPI0
- ResetMskSpi1 = 1u<<7u, ///< SPI1
- ResetMskBaseTim = 1u<<8u, ///< 基础定时器TIM0/1/2
- ResetMskLpTim0 = 1u<<9u, ///< 低功耗定时器0
- ResetMskAdvTim = 1u<<10u, ///< 高级定时器TIM4/5/6
- ResetMskTim3 = 1u<<11u, ///< 定时器3
- ResetMskOpa = 1u<<13u, ///< OPA
- ResetMskPca = 1u<<14u, ///< 可编程计数阵列
- ResetMskAdcBgr = 1u<<16u, ///< ADC&BGR
- ResetMskVcLvd = 1u<<17u, ///< VC和LVD
- ResetMskRng = 1u<<18u, ///< RNG
- ResetMskPcnt = 1u<<19u, ///< PCNT
- ResetMskRtc = 1u<<20u, ///< RTC
- ResetMskTrim = 1u<<21u, ///< 时钟校准
- ResetMskLcd = 1u<<22u, ///< LCD
- ResetMskTick = 1u<<24u, ///< 系统定时器
- ResetMskSwd = 1u<<25u, ///< SWD
- ResetMskCrc = 1u<<26u, ///< CRC
- ResetMskAes = 1u<<27u, ///< AES
- ResetMskGpio = 1u<<28u, ///< GPIO
- ResetMskDma = 1u<<29u, ///< DMA
- }en_reset_peripheral0_t;
- typedef enum en_sysctrl_peripheral1
- {
- ResetMskDac = 1u<<3u, ///< DAC
- ResetMskLpTim1 = 1u<<4u, ///< 低功耗定时器1
- ResetMskUart2 = 1u<<8u, ///< UART2
- ResetMskUart3 = 1u<<9u, ///< UART3
- }en_reset_peripheral1_t;
- /**
- *******************************************************************************
- ** \brief 复位源(标识)显示
- **
- ** \note
- ******************************************************************************/
- typedef enum en_reset_flag
- {
- ResetFlagMskPor5V = 1u<<0u, ///< 5V启动复位
- ResetFlagMskPor1_5V = 1u<<1u, ///< 1.5V启动复位
- ResetFlagMskLvd = 1u<<2u, ///< 低电压检测复位
- ResetFlagMskWdt = 1u<<3u, ///< 看门狗复位
- ResetFlagMskPca = 1u<<4u, ///< PCA复位
- ResetFlagMskLockup = 1u<<5u, ///< 系统异常复位
- ResetFlagMskSysreq = 1u<<6u, ///< 软件复位
- ResetFlagMskRstb = 1u<<7u, ///< RESET脚 复位
- }en_reset_flag_t;
- /*******************************************************************************
- * Global variable declarations ('extern', definition in C source)
- ******************************************************************************/
- /*******************************************************************************
- * Global function prototypes (definition in C source)
- ******************************************************************************/
- ///< 获得复位源状态
- boolean_t Reset_GetFlag(en_reset_flag_t enRstFlg);
- ///< 清除复位源状态
- void Reset_ClearFlag(en_reset_flag_t enRstFlg);
- void Reset_ClearFlagAll(void);
- ///< 外设模块复位
- void Reset_RstPeripheralAll(void);
- void Reset_RstPeripheral0(en_reset_peripheral0_t enPeri);
- void Reset_RstPeripheral1(en_reset_peripheral1_t enPeri);
- //@} // ResetGroup
- #ifdef __cplusplus
- #endif
- #endif /* __RESET_H__ */
- /*******************************************************************************
- * EOF (not truncated)
- ******************************************************************************/
|