-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdsaApplProcSyncFcn_TypeDef.h
56 lines (46 loc) · 1.45 KB
/
dsaApplProcSyncFcn_TypeDef.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/****************************************************************************\
***
*** File : dsaApplProcSyncFcn_TypeDef.h
***
*** Generated by dSPACE Tools.
*** (c) Copyright 2012, dSPACE GmbH. All rights reserved.
\****************************************************************************/
#if !defined(UF_APPLICATION_PROCESS_SYNC_TYPEDEF_H_)
# define UF_APPLICATION_PROCESS_SYNC_TYPEDEF_H_
# include <string.h>
# include <Dstypes.h>
# include <DsApplicationInterface.h>
typedef struct ucf_Application_Process_SyncStruct
{
char* functionBlockName;
UInt32 Len_functionBlockName;
Int32 initialValueUsage;
Int32 systemType; // 0: SCALEXIO, 1: MABX
const char* getArtifactsDirectory()
{
static char buffer[1024];
const char* applArtifactsDir = dsGetApplDownloadDirPath(1);
const char* subDir = "ApplicationProcessSync";
sprintf(buffer, "%s/%s", applArtifactsDir, subDir);
return buffer;
}
UInt32 Key;
DsCIoDriver *Event_Port_driver;
struct
{
void *rtObjects;
} Physical_Interface;
struct
{
int fcnModuleCount;
DsCFcnModule **fcnModules;
struct
{
UInt32 startVal;
int signalWidth;
int *fcnModuleIndex;
int fcnModuleIndexCount;
} Send_Trigger;
} Trigger;
} ucf_Application_Process_SyncStruct_T;
#endif