Generation working and Compilation of MARTe components

This commit is contained in:
ferrog
2025-05-13 16:03:11 +00:00
parent 3a5e378d99
commit 4faee3802a
1571 changed files with 611466 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#ifndef SDD_PON_IF_H
#define SDD_PON_IF_H
#include <cadef.h> /* Channel Access API definition, etc. */
#define SDD_PVMAXLENGTH 40
#define SDD_STRING_MAX_LENGTH 100
#define SDD_NB_OF_PONVAR 0 //generated by SDD
struct SDD_PONVar {
char name[SDD_PVMAXLENGTH];
//if read-> monitor=yes otherwise false
bool isMonitored;
chtype type;
//the code can cast
char initialvalue[SDD_STRING_MAX_LENGTH];
};
//list of symbols
typedef enum SDD_PONVarEnum {
} SDD_PONVarEnum;
//for each enum (bi/bo/mbbi/mbbo) name is symbolname suffix with _enum
#endif /* SDD_PON_IF_H */