blob: e5bf4e2d249da04e77ce1b9294b11096ffa09f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef __BUTTONS_H__
#define __BUTTONS_H__
#include <stdio.h>
// Init buttons used in conjuction with interrupts
// All buttons are connected to ground.
#define NUMBER_OF_BUTTONS 5
#define BUTTON_NONE 0
#define BUTTON_HOME 22
#define BUTTON_SELECT 18
#define BUTTON_MODE 19
#define BUTTON_DOWN 20
#define BUTTON_UP 21
struct global_status {
int current_app = 0;
bool is_sleeping = false;
bool app_ready = true;
bool app_switch_requested = false;
int app_switch_to_app = 0;
// Debounce control
// See https://www.raspberrypi.org/forums/viewtopic.php?f=145&t=301522#p1812063
// Time is currently shared between all buttons.
unsigned long button_last_pressed_time;
const int button_delay_time = 50;
};
extern global_status g_s;
void init_buttons();
void gpio_interrupt_cb(uint gpio, uint32_t events);
unsigned long time_since_button_press();
#endif
|