mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2024-11-28 17:20:30 +00:00
93 lines
2.4 KiB
C
93 lines
2.4 KiB
C
|
/** mbed Microcontroller Library
|
||
|
******************************************************************************
|
||
|
* @file wdt_api.h
|
||
|
* @author
|
||
|
* @version V1.0.0
|
||
|
* @brief This file provides following mbed WDT API
|
||
|
******************************************************************************
|
||
|
* @attention
|
||
|
*
|
||
|
* Copyright (c) 2006-2013 ARM Limited
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
******************************************************************************
|
||
|
*/
|
||
|
#ifndef MBED_WATCHDOG_API_H
|
||
|
#define MBED_WATCHDOG_API_H
|
||
|
|
||
|
#include "device.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/** @addtogroup wdt WDT
|
||
|
* @ingroup hal
|
||
|
* @brief wdt functions
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
|
||
|
///@name Ameba Common
|
||
|
///@{
|
||
|
|
||
|
typedef void (*wdt_irq_handler)(uint32_t id);
|
||
|
/**
|
||
|
* @brief Initializes the watch dog, include time setting, mode register
|
||
|
* @param timeout_ms: the watch-dog timer timeout value, in ms.
|
||
|
* default action of timeout is to reset the whole system.
|
||
|
* @retval none
|
||
|
*/
|
||
|
void watchdog_init(uint32_t timeout_ms);
|
||
|
|
||
|
/**
|
||
|
* @brief Start the watchdog counting
|
||
|
* @param None
|
||
|
* @retval none
|
||
|
*/
|
||
|
void watchdog_start(void);
|
||
|
|
||
|
/**
|
||
|
* @brief Stop the watchdog counting
|
||
|
* @param None
|
||
|
* @retval none
|
||
|
*/
|
||
|
void watchdog_stop(void);
|
||
|
|
||
|
/**
|
||
|
* @brief Refresh the watchdog counting to prevent WDT timeout
|
||
|
* @param None
|
||
|
* @retval none
|
||
|
*/
|
||
|
void watchdog_refresh(void);
|
||
|
|
||
|
/**
|
||
|
* @brief Switch the watchdog timer to interrupt mode and
|
||
|
* register a watchdog timer timeout interrupt handler.
|
||
|
* The interrupt handler will be called when the watch-dog
|
||
|
* timer is timeout.
|
||
|
* @param handler: the callback function for WDT timeout interrupt.
|
||
|
* @param id: the parameter for the callback function
|
||
|
* @retval none
|
||
|
*/
|
||
|
void watchdog_irq_init(wdt_irq_handler handler, uint32_t id);
|
||
|
///@}
|
||
|
|
||
|
/*\@}*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|