module ti.sysbios.hal.Power

Power Manager Proxy

This module is a proxy to the generic Power module functions as defined in IPower.xdc. [ more ... ]
C synopsis target-domain sourced in ti/sysbios/hal/Power.xdc
DETAILS
This module is a proxy to the generic Power module functions as defined in IPower.xdc.
The actual implementations of the Power module functions are provided by the family-specific Power module delegate.
Follow the link below to determine which Power delegate is used for your Target/Device:
 
config Power_idle  // module-wide

Idle the CPU when threads blocked waiting for an interrupt?

C synopsis target-domain
extern const Bool Power_idle;
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId Power_Module_id();
// Get this module's unique id
 
Bool Power_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle Power_Module_heap();
// The heap from which this module allocates memory
 
Bool Power_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 Power_Module_getMask();
// Returns the diagnostics mask for this module
 
Void Power_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
Configuration settings sourced in ti/sysbios/hal/Power.xdc
var Power = xdc.useModule('ti.sysbios.hal.Power');
module-wide config parameters
 
 
 
config Power.idle  // module-wide

Idle the CPU when threads blocked waiting for an interrupt?

Configuration settings
Power.idle = Bool undefined;
 
C SYNOPSIS
 
metaonly config Power.common$  // module-wide

Common module configuration parameters

Configuration settings
Power.common$ = Types.Common$ undefined;
 
DETAILS
All modules have this configuration parameter. Its name contains the '$' character to ensure it does not conflict with configuration parameters declared by the module. This allows new configuration parameters to be added in the future without any chance of breaking existing modules.
generated on Thu, 23 May 2019 00:22:17 GMT