/************************************************************************** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Interrupts.h * * @author (last) Sean * @date (last) 27-Feb-2020 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 * ***************************************************************************/ #ifndef __INTERRUPTS_H__ #define __INTERRUPTS_H__ #include "DGCommon.h" /** * @defgroup Interrupts Interrupts * @brief Interrupts module handles various peripheral interrupts. * * @addtogroup Interrupts * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initInterrupts( void ); /**@}*/ #endif