aboutsummaryrefslogtreecommitdiff
path: root/example-primer2/primer2-switches.h
blob: e1d0c85e6a69758476b46f9e239cc502efa9e1ae (plain)
1
2
3
4
5
6
7
8
9
extern void shutdown (void);
extern void set_backlight (int on);
extern int pbutton (void);
extern int joystick (void);

#define JOYSTICK_L(x) ((x) & 1)
#define JOYSTICK_R(x) ((x) & 2)
#define JOYSTICK_U(x) ((x) & 4)
#define JOYSTICK_D(x) ((x) & 8)