Index: firmware/App/Services/Interrupts.h =================================================================== diff -u -rb64c49fdcf2b6d95e61e63f8e258c4e600935bbd -r7d4711edd7b40cd3e29f43e766f79a8a09586fe9 --- firmware/App/Services/Interrupts.h (.../Interrupts.h) (revision b64c49fdcf2b6d95e61e63f8e258c4e600935bbd) +++ firmware/App/Services/Interrupts.h (.../Interrupts.h) (revision 7d4711edd7b40cd3e29f43e766f79a8a09586fe9) @@ -1,26 +1,41 @@ -/************************************************************************** - * - * 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 - * - * @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) 14-May-2023 +* +* @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 ); + +BOOL getSci2FEOEError( void ); + +/**@}*/ #endif