leddie/firmware/lib/pm.h

18 lines
208 B
C
Raw Normal View History

2024-02-04 19:59:12 +01:00
#ifndef _PM_H
#define _PM_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