Add argument to STM32 EXTI interrupt handlers.

This commit is contained in:
Gregory Nutt
2017-02-27 14:21:30 -06:00
parent 69c26cca50
commit 67de2e5f66
123 changed files with 497 additions and 315 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* include/nuttx/board.h
*
* Copyright (C) 2015-2016 Gregory Nutt. All rights reserved.
* Copyright (C) 2015-2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -614,7 +614,7 @@ uint8_t board_buttons(void);
****************************************************************************/
#ifdef CONFIG_ARCH_IRQBUTTONS
xcpt_t board_button_irq(int id, xcpt_t irqhandler);
xcpt_t board_button_irq(int id, xcpt_t irqhandler, FAR void *arg);
#endif
/****************************************************************************