ConOpSys V2970  P004.07
ANVILEX control operating system
P015_09_V1_0.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //! @file P015_09_V1_0.h
3 //! @brief Control board P015.09 V1.0 hardware driver 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/Hardware/P015_09_V1_0/P015_09_V1_0.h $
7 //! $Revision: 2268 $
8 //! $Date: 2020-12-06 14:59:59 +0500 (So, 06 Dez 2020) $
9 //! $Author: minch $
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 //------------------------------------------------------------------------------
41 // Protecting header files from mutual, recursive inclusion.
42 //------------------------------------------------------------------------------
43 
44 #pragma once
45 
46 //------------------------------------------------------------------------------
47 // Include system headers
48 //------------------------------------------------------------------------------
49 
50 #include "Application_Resource_Configuration.h"
51 
52 //------------------------------------------------------------------------------
53 // Include project headers
54 //------------------------------------------------------------------------------
55 
56 #include "CPU_STM32F429.h"
57 
58 //------------------------------------------------------------------------------
59 // Class declaration
60 //------------------------------------------------------------------------------
61 
62 //! @brief Target P017_39_KG3_CB_DEBUG class.
64 {
65 
66  //----------------------------------------------------------------------------
67  // Public defines, methods and variables
68  //----------------------------------------------------------------------------
69 
70  public:
71 
72  //--------------------------------------------------------------------------
73  // Object initialisation and finalisation methods
74  //--------------------------------------------------------------------------
75 
76  //!-------------------------------------------------------------------------
77  //! @brief Object initialisation method.
78  //! @note None
79  //! @return None
80  //! \par Override
81  //! Not allowed
82  //! @attention None
83  //--------------------------------------------------------------------------
84 
85  VOID Init();
86 
87  //!-------------------------------------------------------------------------
88  //! @brief Object finalisation method.
89  //! @note None
90  //! @return None
91  //! \par Override
92  //! Not allowed
93  //! @attention None
94  //--------------------------------------------------------------------------
95 
96  VOID Done();
97 
98  //!-------------------------------------------------------------------------
99  //! @brief Send boot ststus information message about target platform driver over communication link protocol
100  //! @note This method sends boot ststus information about target platform driver over specified communication link protocol.
101  //! @param [in] *object_Protocol - Pointer to the communication link protocol
102  //! @return None
103  //! \par Override
104  //! Not allowed
105  //! @attention None
106  //--------------------------------------------------------------------------
107 
108  VOID Send_Boot_Information( TProtocol_Base *object_Protocol );
109 
110  //----------------------------------------------------------------------------
111  // Protected defines, methods and variables
112  //----------------------------------------------------------------------------
113 
114  protected:
115 
116  //----------------------------------------------------------------------------
117  // Private defines, methods and variables
118  //----------------------------------------------------------------------------
119 
120  private:
121 
122  //! @brief Error flag
124 
125 };
126 
127 //------------------------------------------------------------------------------
128 // Export external references
129 //------------------------------------------------------------------------------
130 
131 extern "C" void System_Init( void );
132 
133 //------------------------------------------------------------------------------
134 // End Of File
135 //------------------------------------------------------------------------------
STM32F429 CPU class header file.
void VOID
Datatypesess datatype definition.
Definition: Defines.h:105
unsigned long U32
Binary 32-Bit unsigned integer datatype defenition.
Definition: Defines.h:203
void System_Init(void)
Definition: P013_35_V1_3_CPU.cpp:94
Definition: Protocol_Base.h:57
Target P017_39_KG3_CB_DEBUG class.
Definition: P015_09_V1_0.h:64
U32 u32_Error_Flag
Error flag.
Definition: P015_09_V1_0.h:123
VOID Done()
Object finalisation method.
Definition: P015_09_V1_0.cpp:1219
VOID Init()
Object initialisation method.
Definition: P015_09_V1_0.cpp:1207
VOID Send_Boot_Information(TProtocol_Base *object_Protocol)
Send boot ststus information message about target platform driver over communication link protocol.
Definition: P015_09_V1_0.cpp:1227