Revert ADC_KEYPAD direction behavior (#12508)

This commit is contained in:
Scott Lahteine
2018-11-22 06:00:00 -06:00
committed by GitHub
parent d29cb09b3e
commit fd2998efd5
4 changed files with 22 additions and 9 deletions

View File

@ -188,7 +188,10 @@
#define B_DW (_BV(BL_DW))
#define B_RI (_BV(BL_RI))
#define B_ST (_BV(BL_ST))
#define BUTTON_CLICK() (buttons & (B_MI|B_ST))
#ifndef BUTTON_CLICK
#define BUTTON_CLICK() (buttons & (B_MI|B_ST))
#endif
#endif