diff options
Diffstat (limited to 'stm/usrsw.c')
-rw-r--r-- | stm/usrsw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/usrsw.c b/stm/usrsw.c index c3374b847e..528c57e80d 100644 --- a/stm/usrsw.c +++ b/stm/usrsw.c @@ -52,7 +52,7 @@ int switch_get(void) { // pulled low, so switch is pressed return 1; } -#elif defined (STM32F4DISC) +#elif defined (STM32F4DISC) || defined(NETDUINO_PLUS_2) /* switch pulled down */ if (USRSW_PORT->IDR & USRSW_PIN) { // pulled high, so switch is pressed |