mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 01:18:28 +00:00
buttons: Wrap macros with #ifndef (#216)
This commit is contained in:
parent
07f6e495b7
commit
724ce5e7ee
@ -34,8 +34,16 @@ extern struct buttonState button;
|
|||||||
|
|
||||||
void buttonUpdate(void);
|
void buttonUpdate(void);
|
||||||
|
|
||||||
|
#ifndef BTN_PORT
|
||||||
#define BTN_PORT GPIOC
|
#define BTN_PORT GPIOC
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef BTN_PIN_YES
|
||||||
#define BTN_PIN_YES GPIO2
|
#define BTN_PIN_YES GPIO2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef BTN_PIN_NO
|
||||||
#define BTN_PIN_NO GPIO5
|
#define BTN_PIN_NO GPIO5
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user