ConOpSys V2970  P004.07
ANVILEX control operating system
Hardware_Platform_VDC.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // Runtime engine: VDC
3 //------------------------------------------------------------------------------
4 
5 #pragma once
6 
7 //------------------------------------------------------------------------------
8 //! @brief Hardware target related defines
9 //------------------------------------------------------------------------------
10 
11 #define HARDWARE_VERSION ( (C8*)"VDC" )
12 #define HARDWARE_ID ( (U32)3 )
13 
14 //------------------------------------------------------------------------------
15 // Test for command manager defined
16 //------------------------------------------------------------------------------
17 
18 #ifndef COMMAND_MANAGER_MODULE_INSTALLED
19 
20  // Show error message
21  #error "Undefined compilation switch: COMMAND_MANAGER_MODULE_INSTALLED"
22 
23 #endif
24 
25 //------------------------------------------------------------------------------
26 // Test for event manager defined
27 //------------------------------------------------------------------------------
28 
29 #ifndef EVENT_MANAGER_MODULE_INSTALLED
30 
31  // Show error message
32  #error "Undefined compilation switch: EVENT_MANAGER_MODULE_INSTALLED"
33 
34 #endif
35 
36 //------------------------------------------------------------------------------
37 // Test for signal recorder defined
38 //------------------------------------------------------------------------------
39 
40 #ifndef SCOPE_MODULE_INSTALLED
41 
42  // Show error message
43  #error "Undefined compilation switch: SCOPE_MODULE_INSTALLED"
44 
45 #endif
46 
47 //------------------------------------------------------------------------------
48 // Include files related to the system objects
49 //------------------------------------------------------------------------------
50 
51 #include "Function_Block_Manager.h"
52 
53 //------------------------------------------------------------------------------
54 // End of file
55 //------------------------------------------------------------------------------
Function block manager class header file.