diff --git a/boards/frdm-k64f/include/board.h b/boards/frdm-k64f/include/board.h index 4c92b56f28c5cb4099f245a9ac2de691162acd53..647f51acdeb6130d0e66a3400bae2597f7118c6b 100644 --- a/boards/frdm-k64f/include/board.h +++ b/boards/frdm-k64f/include/board.h @@ -53,6 +53,20 @@ extern "C" #define LED2_TOGGLE (GPIOB->PTOR = LED2_MASK) /** @} */ +/** + * @name Button pin definitions + * @{ + */ +/* SW2, SW3 will short these pins to ground when pushed. PTA4 has an external + * pull-up resistor to VDD, but there is no external pull resistor on PTC6 */ +/* BTN0 is mapped to SW2 */ +#define BTN0_PIN GPIO_PIN(PORT_C, 6) +#define BTN0_MODE GPIO_IN_PU +/* BTN1 is mapped to SW3 */ +#define BTN1_PIN GPIO_PIN(PORT_A, 4) +#define BTN1_MODE GPIO_IN_PU +/** @} */ + /** * @name FXOS8700CQ 3-axis accelerometer and magnetometer bus configuration * @{