webradio/firmware/pm.h

16 lines
219 B
C

#ifndef PM_H
#define PM_H
#include <avr/io.h>
#define PORT_SBCPOW(t) t##B
#define PIN_SBCPOW (1 << 7)
void pm_init();
void suspend();
char* post();
void pm_init();
void pm_sbc_on();
void pm_sbc_off();
#endif // PM_H