summaryrefslogtreecommitdiff
path: root/nuttx/configs/pcduino-a10/include/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/pcduino-a10/include/board.h')
-rw-r--r--nuttx/configs/pcduino-a10/include/board.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/nuttx/configs/pcduino-a10/include/board.h b/nuttx/configs/pcduino-a10/include/board.h
index b5b0f3b71..09f5820a7 100644
--- a/nuttx/configs/pcduino-a10/include/board.h
+++ b/nuttx/configs/pcduino-a10/include/board.h
@@ -201,48 +201,6 @@ void a1x_setled(int led, bool ledon);
void a1x_setleds(uint8_t ledset);
#endif
-/************************************************************************************
- * Name: up_buttoninit
- *
- * Description:
- * up_buttoninit() must be called to initialize button resources. After that,
- * up_buttons() may be called to collect the current state of all buttons or
- * up_irqbutton() may be called to register button interrupt handlers.
- *
- ************************************************************************************/
-
-#ifdef CONFIG_ARCH_BUTTONS
-void up_buttoninit(void);
-
-/************************************************************************************
- * Name: up_buttons
- *
- * Description:
- * After up_buttoninit() has been called, up_buttons() may be called to collect
- * the state of all buttons. up_buttons() returns an 8-bit bit set with each bit
- * associated with a button. See the BUTTON* definitions above for the meaning of
- * each bit in the returned value.
- *
- ************************************************************************************/
-
-uint8_t up_buttons(void);
-
-/************************************************************************************
- * Name: up_irqbutton
- *
- * Description:
- * This function may be called to register an interrupt handler that will be
- * called when a button is depressed or released. The ID value is one of the
- * BUTTON* definitions provided above. The previous interrupt handler address is
- * returned (so that it may restored, if so desired).
- *
- ************************************************************************************/
-
-#ifdef CONFIG_A1X_PIO_IRQ
-xcpt_t up_irqbutton(int id, xcpt_t irqhandler);
-#endif
-#endif /* CONFIG_ARCH_BUTTONS */
-
#undef EXTERN
#if defined(__cplusplus)
}