Index: firmware/App/Services/Interrupts.h =================================================================== diff -u -reff7b1575f008f81b29ef906f6346fac6012d3ab -rcd5be724d5a3ba7457e761191d82f278654d7f5c --- firmware/App/Services/Interrupts.h (.../Interrupts.h) (revision eff7b1575f008f81b29ef906f6346fac6012d3ab) +++ firmware/App/Services/Interrupts.h (.../Interrupts.h) (revision cd5be724d5a3ba7457e761191d82f278654d7f5c) @@ -1,24 +1,41 @@ -/************************************************************************** - * - * Copyright (c) 2019-2019 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 - * - * @date 22-Oct-2019 - * @author S. Nash - * - * @brief header file for interrupts service. - * - **************************************************************************/ +/************************************************************************** +* +* Copyright (c) 2019-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) Bill Bracken +* @date (last) 12-May-2023 +* +* @author (original) Dara Navaei +* @date (original) 05-Nov-2019 +* +***************************************************************************/ #ifndef __INTERRUPTS_H__ #define __INTERRUPTS_H__ +#include "HDCommon.h" + +/** + * @defgroup Interrupts Interrupts + * @brief Interrupts module handles various peripheral interrupts. + * + * @addtogroup Interrupts + * @{ + */ + // ********** public definitions ********** // ********** public function prototypes ********** +void initInterrupts( void ); + +BOOL getSci2FEOEError( void ); + +/**@}*/ + #endif