summaryrefslogtreecommitdiffstatshomepage
path: root/.gitignore
blob: c4c9ac3ffa5af077a3a5ffd349a413df1f6e703b (plain)
1
2
3
4
# Files I don't care to see in git-status/commit
cgit
*.o
*~
riable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#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_HOME 22
#define BUTTON_SELECT 18
#define BUTTON_MODE 19
#define BUTTON_DOWN 20
#define BUTTON_UP 21

void init_buttons();
void gpio_interrupt_cb(uint gpio, uint32_t events);

#endif