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