5.7 RSTCTRL - Reset Controller
5.7.1 Introduction
The MPLAB® Code Configurator (MCC) Reset Controller (RSTCTRL) Peripheral Library (PLIB) driver generates APIs to support RSTCTRL-specific peripheral functionality on AVRxxxDx and ATtiny target MCUs.
The RSTCTRL manages the Reset of the device. When receiving a Reset request, it sets the device to an initial state and allows the Reset source to be identified by the software. The Reset controller can also be used to issue a Software Reset (SWRST).
5.7.2 Supported Device Families
AVR® Dx | AVR® Ex | ATtiny | ATmega |
5.7.3 Required Header Files:
#include"mcc_generated_files/reset/rstctrl.h"
5.7.4 Module Documentation
5.7.4.1 Reset Control
This file contains the API prototypes for the RSTCTRL driver.
5.7.4.1.1 Module description
This file contains the API prototypes for the RSTCTRL driver.
Functions
static void RSTCTRL_reset (void)
Issues a System Reset from the software.
static uint8_t RSTCTRL_get_reset_cause (void)
Returns the value of the Reset Flag register.
static void RSTCTRL_clear_reset_cause (void)
Clears the Reset Flag register.
5.7.4.1.2 Function Documentation
RSTCTRL_clear_reset_cause()
static void RSTCTRL_clear_reset_cause (void )[inline], [static]
Clears the Reset Flag register.
|
None. |
RSTCTRL_get_reset_cause()
static uint8_t RSTCTRL_get_reset_cause (void )[inline], [static]
Returns the value of the Reset Flag register.
|
Reset flag - Value of the Reset Flag register. |
RSTCTRL_reset()
static void RSTCTRL_reset (void )[inline], [static]
Issues a System Reset from the software.
|
None. |
5.7.5 File Documentation
5.7.5.1 source/rstctrl.h File Reference
#include "../system/ccp.h"
5.7.5.1.1 Functions
static void RSTCTRL_reset (void)
Issues a System Reset from the software.
static uint8_t RSTCTRL_get_reset_cause (void)
Returns the value of the Reset Flag register.
static void RSTCTRL_clear_reset_cause (void)
Clears the Reset Flag register.
5.7.5.1.2 Detailed Description
RSTCTRL Generated Driver File.