board_common:Add BOARD_INDICATE_ARMED_STATE

This adds an optional default support for HW that does not
   have and external armed indiction.
This commit is contained in:
David Sidrane 2019-02-12 04:00:38 -08:00 committed by Daniel Agar
parent c04147c53c
commit bf8a5e9652

View File

@ -316,6 +316,14 @@
# endif
#endif //
/* Provide an overridable default nop
* for BOARD_INDICATE_ARMED_STATE
*/
#if !defined(BOARD_INDICATE_ARMED_STATE)
# define BOARD_INDICATE_ARMED_STATE(on_armed)
#endif
/************************************************************************************
* Public Data
************************************************************************************/