5a96a696b1
- 펌웨어(program), C# 대시보드(TestProgram), 시뮬레이터(Simulator), 프로토콜/문서(Protocol, doc) 전체를 단일 저장소로 통합 - program 폴더의 별도 git 저장소를 제거하고 통합 저장소에 흡수 - 빌드 산출물(program/build, bin/obj, *.o/.elf/.bin/.hex 등) .gitignore 처리 - 사내 Synology NAS Git 원격 연결 예정 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
2.2 KiB
C
68 lines
2.2 KiB
C
/**************************************************************************//**
|
|
* @file wwdt.c
|
|
* @version V1.00
|
|
* $Revision: 3 $
|
|
* $Date: 14/08/29 7:57p $
|
|
* @brief Nano100 series WWDT driver source file
|
|
*
|
|
* @note
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright (C) 2013 Nuvoton Technology Corp. All rights reserved.
|
|
*****************************************************************************/
|
|
#include "Nano100Series.h"
|
|
|
|
/** @addtogroup NANO100_Device_Driver NANO100 Device Driver
|
|
@{
|
|
*/
|
|
|
|
/** @addtogroup NANO100_WWDT_Driver WWDT Driver
|
|
@{
|
|
*/
|
|
|
|
|
|
/** @addtogroup NANO100_WWDT_EXPORTED_FUNCTIONS WWDT Exported Functions
|
|
@{
|
|
*/
|
|
|
|
/**
|
|
* @brief This function make WWDT module start counting with different counter period and compared window value
|
|
* @param[in] u32PreScale Prescale period for the WWDT counter period. Valid values are:
|
|
* - \ref WWDT_PRESCALER_1
|
|
* - \ref WWDT_PRESCALER_2
|
|
* - \ref WWDT_PRESCALER_4
|
|
* - \ref WWDT_PRESCALER_8
|
|
* - \ref WWDT_PRESCALER_16
|
|
* - \ref WWDT_PRESCALER_32
|
|
* - \ref WWDT_PRESCALER_64
|
|
* - \ref WWDT_PRESCALER_128
|
|
* - \ref WWDT_PRESCALER_192
|
|
* - \ref WWDT_PRESCALER_256
|
|
* - \ref WWDT_PRESCALER_384
|
|
* - \ref WWDT_PRESCALER_512
|
|
* - \ref WWDT_PRESCALER_768
|
|
* - \ref WWDT_PRESCALER_1024
|
|
* - \ref WWDT_PRESCALER_1536
|
|
* - \ref WWDT_PRESCALER_2048
|
|
* @param[in] u32CmpValue Window compared value. Valid values are between 0x0 to 0x3F
|
|
* @param[in] u32EnableInt Enable WWDT interrupt or not. Valid values are TRUE and FALSE
|
|
* @return None
|
|
* @note Application can call this function can only once after boot up
|
|
*/
|
|
void WWDT_Open(uint32_t u32PreScale, uint32_t u32CmpValue, uint32_t u32EnableInt)
|
|
{
|
|
WWDT->IER = u32EnableInt;
|
|
WWDT->CR = u32PreScale | (u32CmpValue << WWDT_CR_WINCMP_Pos) | WWDT_CR_WWDTEN_Msk;
|
|
return;
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@}*/ /* end of group NANO100_WDT_EXPORTED_FUNCTIONS */
|
|
|
|
/*@}*/ /* end of group NANO100_WDT_Driver */
|
|
|
|
/*@}*/ /* end of group NANO100_Device_Driver */
|
|
|
|
/*** (C) COPYRIGHT 2013 Nuvoton Technology Corp. ***/
|