![]() |
MCUXpresso SDK API Reference Manual
Rev 2.16.000
NXP Semiconductors
|
The MCUXpresso SDK provides a peripheral driver for the Reset Control Module (RCM) module of MCUXpresso SDK devices.
Data Structures | |
struct | _rcm_version_id |
IP version ID definition. More... | |
struct | _rcm_reset_pin_filter_config |
Reset pin filter configuration. More... | |
Typedefs | |
typedef enum _rcm_reset_source | rcm_reset_source_t |
System Reset Source Name definitions. | |
typedef enum _rcm_run_wait_filter_mode | rcm_run_wait_filter_mode_t |
Reset pin filter select in Run and Wait modes. | |
typedef enum _rcm_reset_delay | rcm_reset_delay_t |
Maximum delay time from interrupt asserts to system reset. | |
typedef enum _rcm_interrupt_enable | rcm_interrupt_enable_t |
System reset interrupt enable bit definitions. | |
typedef struct _rcm_version_id | rcm_version_id_t |
IP version ID definition. | |
typedef struct _rcm_reset_pin_filter_config | rcm_reset_pin_filter_config_t |
Reset pin filter configuration. | |
Enumerations | |
enum | _rcm_reset_source { kRCM_SourceLvd = RCM_SRS_LVD_MASK, kRCM_SourceLoc = RCM_SRS_LOC_MASK, kRCM_SourceLol = RCM_SRS_LOL_MASK, kRCM_SourceWdog = RCM_SRS_WDOG_MASK, kRCM_SourcePin = RCM_SRS_PIN_MASK, kRCM_SourcePor = RCM_SRS_POR_MASK, kRCM_SourceLockup = RCM_SRS_LOCKUP_MASK, kRCM_SourceSw = RCM_SRS_SW_MASK, kRCM_SourceMdmap = RCM_SRS_MDM_AP_MASK, kRCM_SourceSackerr = RCM_SRS_SACKERR_MASK } |
System Reset Source Name definitions. More... | |
enum | _rcm_run_wait_filter_mode { kRCM_FilterDisable = 0U, kRCM_FilterBusClock = 1U, kRCM_FilterLpoClock = 2U } |
Reset pin filter select in Run and Wait modes. More... | |
enum | _rcm_reset_delay { kRCM_ResetDelay8Lpo = 0U, kRCM_ResetDelay32Lpo = 1U, kRCM_ResetDelay128Lpo = 2U, kRCM_ResetDelay512Lpo = 3U } |
Maximum delay time from interrupt asserts to system reset. More... | |
enum | _rcm_interrupt_enable { kRCM_IntNone = 0U, kRCM_IntLossOfClk = RCM_SRIE_LOC_MASK, kRCM_IntLossOfLock = RCM_SRIE_LOL_MASK, kRCM_IntWatchDog = RCM_SRIE_WDOG_MASK, kRCM_IntExternalPin = RCM_SRIE_PIN_MASK, kRCM_IntGlobal = RCM_SRIE_GIE_MASK, kRCM_IntCoreLockup = RCM_SRIE_LOCKUP_MASK, kRCM_IntSoftware = RCM_SRIE_SW_MASK, kRCM_IntStopModeAckErr = RCM_SRIE_SACKERR_MASK, kRCM_IntAll } |
System reset interrupt enable bit definitions. More... | |
Driver version | |
#define | FSL_RCM_DRIVER_VERSION (MAKE_VERSION(2, 0, 4)) |
RCM driver version 2.0.4. More... | |
Reset Control Module APIs | |
static void | RCM_GetVersionId (RCM_Type *base, rcm_version_id_t *versionId) |
Gets the RCM version ID. More... | |
static uint32_t | RCM_GetPreviousResetSources (RCM_Type *base) |
Gets the reset source status which caused a previous reset. More... | |
static uint32_t | RCM_GetStickyResetSources (RCM_Type *base) |
Gets the sticky reset source status. More... | |
static void | RCM_ClearStickyResetSources (RCM_Type *base, uint32_t sourceMasks) |
Clears the sticky reset source status. More... | |
void | RCM_ConfigureResetPinFilter (RCM_Type *base, const rcm_reset_pin_filter_config_t *config) |
Configures the reset pin filter. More... | |
static void | RCM_SetSystemResetInterruptConfig (RCM_Type *base, uint32_t intMask, rcm_reset_delay_t delay) |
Sets the system reset interrupt configuration. More... | |
struct _rcm_version_id |
struct _rcm_reset_pin_filter_config |
Data Fields | |
bool | enableFilterInStop |
Reset pin filter select in stop mode. More... | |
rcm_run_wait_filter_mode_t | filterInRunWait |
Reset pin filter in run/wait mode. More... | |
uint8_t | busClockFilterCount |
Reset pin bus clock filter width. More... | |
bool _rcm_reset_pin_filter_config::enableFilterInStop |
rcm_run_wait_filter_mode_t _rcm_reset_pin_filter_config::filterInRunWait |
uint8_t _rcm_reset_pin_filter_config::busClockFilterCount |
#define FSL_RCM_DRIVER_VERSION (MAKE_VERSION(2, 0, 4)) |
enum _rcm_reset_source |
enum _rcm_reset_delay |
|
inlinestatic |
This function gets the RCM version ID including the major version number, the minor version number, and the feature specification number.
base | RCM peripheral base address. |
versionId | Pointer to the version ID structure. |
|
inlinestatic |
This function gets the current reset source status. Use source masks defined in the rcm_reset_source_t to get the desired source status.
This is an example.
base | RCM peripheral base address. |
|
inlinestatic |
This function gets the current reset source status that has not been cleared by software for a specific source.
This is an example.
base | RCM peripheral base address. |
|
inlinestatic |
This function clears the sticky system reset flags indicated by source masks.
This is an example.
base | RCM peripheral base address. |
sourceMasks | reset source status bit map |
void RCM_ConfigureResetPinFilter | ( | RCM_Type * | base, |
const rcm_reset_pin_filter_config_t * | config | ||
) |
This function sets the reset pin filter including the filter source, filter width, and so on.
base | RCM peripheral base address. |
config | Pointer to the configuration structure. |
|
inlinestatic |
For a graceful shut down, the RCM supports delaying the assertion of the system reset for a period of time when the reset interrupt is generated. This function can be used to enable the interrupt and the delay period. The interrupts are passed in as bit mask. See rcm_int_t for details. For example, to delay a reset for 512 LPO cycles after the WDOG timeout or loss-of-clock occurs, configure as follows: RCM_SetSystemResetInterruptConfig(kRCM_IntWatchDog | kRCM_IntLossOfClk, kRCM_ResetDelay512Lpo);
base | RCM peripheral base address. |
intMask | Bit mask of the system reset interrupts to enable. See rcm_interrupt_enable_t for details. |
delay | Bit mask of the system reset interrupts to enable. |