/************************************************************************** * * Copyright (c) 2024-2024 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) Vinayakam Mani * @date (last) 09-Aug-2024 * * @author (original) Vinayakam Mani * @date (original) 08-Aug-2024 * ***************************************************************************/ #ifndef __INTERRUPTS_H__ #define __INTERRUPTS_H__ #include "DDCommon.h" /** * @defgroup Interrupts Interrupts * @brief Interrupts unit handles various peripheral interrupts. * * @addtogroup Interrupts * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initInterrupts( void ); BOOL getSci2FEOEError( void ); /**@}*/ #endif