mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
10 lines
224 B
C
10 lines
224 B
C
/*! \file power.h
|
|
\brief Power management library for the CC430F6137.
|
|
*/
|
|
|
|
//! Returns non-zero if in anything but the lowest power mode.
|
|
int power_ishigh();
|
|
|
|
//! Sets the core core voltage.
|
|
int power_setvcore (int level);
|