23 lines
279 B
C
23 lines
279 B
C
|
#ifndef _PM_H
|
||
|
#define _PM_H
|
||
|
|
||
|
#include "hal.h"
|
||
|
|
||
|
void pm_reset();
|
||
|
void pm_init();
|
||
|
void pm_suspend();
|
||
|
|
||
|
void pm_axl_on();
|
||
|
void pm_axl_off();
|
||
|
|
||
|
void pm_led_on();
|
||
|
void pm_led_off();
|
||
|
void pm_led_on_auto();
|
||
|
|
||
|
int pm_ac_connected();
|
||
|
int pm_charging();
|
||
|
|
||
|
void pm_disable_periphery();
|
||
|
|
||
|
#endif
|