ConOpSys V2970  P004.07
ANVILEX control operating system
NVIC_STM32F429.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file NVIC_STM32F429.h
3 //! @brief STM32F429 on-chip NVIC module class header file.
4 //! @attention No special attention requered.
5 //! @copyright (C) 2015-2020 ANVILEX LLC
6 //! $HeadURL: https://192.168.3.4:8443/svn/P004_07/ConOpSys/Targets/STM32F429/NVIC_STM32F429.h $
7 //! $Revision: 2806 $
8 //! $Date: 2021-07-20 19:14:49 +0500 (Di, 20 Jul 2021) $
9 //! $Author: ggavrituhin $
10 //------------------------------------------------------------------------------
11 //
12 // Redistribution and use in source and binary forms, with or without
13 // modification, are permitted provided that the following conditions are met:
14 //
15 // 1. Redistributions of source code must retain the above copyright notice,
16 // this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright notice,
19 // this list of conditions and the following disclaimer in the documentation
20 // and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of ANVILEX nor the names of its contributors may be
23 // used to endorse or promote products derived from this software without
24 // specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
30 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 // POSSIBILITY OF SUCH DAMAGE.
37 //
38 //------------------------------------------------------------------------------
39 
40 #pragma once
41 
42 //------------------------------------------------------------------------------
43 // Include header files
44 //------------------------------------------------------------------------------
45 
46 #include "Defines.h"
47 
48 //------------------------------------------------------------------------------
49 // Class
50 //------------------------------------------------------------------------------
51 
52 //! @brief System interrupt manager
54 {
55 
56  //----------------------------------------------------------------------------
57  // Public defines, methods and variables
58  //----------------------------------------------------------------------------
59 
60  public:
61 
62  //!-------------------------------------------------------------------------
63  //! @brief Class constructor method.
64  //! @note None
65  //! \par Override
66  //! Not allowed
67  //! @attention Don't call this method directly.
68  //--------------------------------------------------------------------------
69 
71 
72  //!-------------------------------------------------------------------------
73  //! @brief Class destructor method.
74  //! @note None
75  //! \par Override
76  //! Not allowed
77  //! @attention Don't call this method directly.
78  //--------------------------------------------------------------------------
79 
81 
82  //!-------------------------------------------------------------------------
83  //! @brief Object initialisation method.
84  //! @note None
85  //! @return None
86  //! \par Override
87  //! Not allowed
88  //! @attention None
89  //--------------------------------------------------------------------------
90 
92 
93  //!-------------------------------------------------------------------------
94  //! @brief Object finalisation method.
95  //! @note None
96  //! @return None
97  //! \par Override
98  //! Not allowed
99  //! @attention None
100  //--------------------------------------------------------------------------
101 
103 
104  //!-------------------------------------------------------------------------
105  //! @brief Enable interrupt method.
106  //! @note None
107  //! @return None
108  //! \par Override
109  //! Not allowed
110  //! @attention None
111  //--------------------------------------------------------------------------
112 
114 
115  //!-------------------------------------------------------------------------
116  //! @brief Disable interrupt method.
117  //! @note None
118  //! @return None
119  //! \par Override
120  //! Not allowed
121  //! @attention None
122  //--------------------------------------------------------------------------
123 
125 
126  //---------------------------------------------------------------------------
127  // Protected defines, methods and variables
128  //---------------------------------------------------------------------------
129 
130  protected:
131 
132  //---------------------------------------------------------------------------
133  // Private defines, methods and variables
134  //---------------------------------------------------------------------------
135 
136  private:
137 
138 };
139 
140 //------------------------------------------------------------------------------
141 
142 //VOID *ExceptionHandler( U32 ExceptionCode );
143 
144 extern "C" VOID Unused_Interrupt_Handler();
145 
146 extern "C" VOID NMI_Interrupt_Handler();
147 
150 extern "C" VOID Bus_Fault_Interrupt_Handler();
152 
153 extern "C" VOID SVC_Interrupt_Handler();
155 extern "C" VOID PendSV_Interrupt_Handler();
156 //extern "C" void OTG_HS_WKUP_IRQHandler();
157 //extern "C" VOID ETH_IRQHandler();
158 //extern "C" VOID PVD_IRQHandler();
159 //extern "C" VOID OTG_HS_IRQHandler();
160 //extern "C" VOID WWDG_IRQHandler();
161 
163 
164 //------------------------------------------------------------------------------
165 // End Of File
166 //------------------------------------------------------------------------------
ConOpSys data type definitions header file.
void VOID
Datatypesess datatype definition.
Definition: Defines.h:105
VOID NMI_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:85
VOID Memory_Manage_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:153
VOID Debug_Monitor_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:276
VOID SVC_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:265
VOID Bus_Fault_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:191
VOID PendSV_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:287
VOID Unused_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:74
TSystem_Interrupt_Manager object_System_Interrupt_Manager
Global interrupt manager object.
Definition: NVIC_STM32F410CBU6.cpp:68
VOID Hard_Fault_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:117
VOID Usage_Fault_Interrupt_Handler()
Definition: NVIC_STM32F410CBU6.cpp:229
System interrupt manager.
Definition: NVIC_STM32F410CBU6.h:53
VOID Disable_Interrupt()
Disable interrupt method.
VOID Enable_Interrupt()
Enable interrupt method.
~TSystem_Interrupt_Manager()
Class destructor method.
TSystem_Interrupt_Manager()
Class constructor method.
VOID Done()
Object finalisation method.
VOID Init()
Object initialisation method.