20 lines
226 B
C
20 lines
226 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();
|
|
|
|
int pm_ac_connected();
|
|
int pm_charging();
|
|
|
|
#endif
|