TI-RTOS Drivers  tidrivers_full_2_20_00_08
Data Fields
WatchdogMSP432_HWAttrs Struct Reference

Watchdog hardware attributes for MSP432 These fields are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP432Ware these definitions are found in: More...

#include <WatchdogMSP432.h>

Data Fields

uint32_t baseAddr
 
uint8_t intNum
 
uint8_t intPriority
 
uint8_t clockSource
 
uint8_t clockDivider
 

Detailed Description

Watchdog hardware attributes for MSP432 These fields are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP432Ware these definitions are found in:

intPriority is the Watchdog timer's interrupt priority, as defined by the underlying OS. It is passed unmodified to the underlying OS's interrupt handler creation code, so you need to refer to the OS documentation for usage. For example, for SYS/BIOS applications, refer to the ti.sysbios.family.arm.m3.Hwi documentation for SYS/BIOS usage of interrupt priorities. If the driver uses the ti.drivers.ports interface instead of making OS calls directly, then the HwiP port handles the interrupt priority in an OS specific way. In the case of the SYS/BIOS port, intPriority is passed unmodified to Hwi_create().

A sample structure is shown below:

const WatchdogMSP432_HWAttrs watchdogMSP432HWAttrs[MSP_EXP432P401R_WATCHDOGCOUNT] = {
{
.baseAddr = WDT_A_BASE,
.intNum = INT_WDT_A,
.intPriority = ~0,
.clockSource = WDT_A_CLOCKSOURCE_SMCLK,
.clockDivider = WDT_A_CLOCKDIVIDER_8192K
},
};

Field Documentation

uint32_t WatchdogMSP432_HWAttrs::baseAddr

Base address of Watchdog

uint8_t WatchdogMSP432_HWAttrs::intNum

WDT interrupt number

uint8_t WatchdogMSP432_HWAttrs::intPriority

WDT interrupt priority

uint8_t WatchdogMSP432_HWAttrs::clockSource

Clock source for Watchdog

uint8_t WatchdogMSP432_HWAttrs::clockDivider

Clock divider for Watchdog


The documentation for this struct was generated from the following file:
Copyright 2016, Texas Instruments Incorporated