|
LIB61850_API SVPublisher | SVPublisher_create (CommParameters *parameters, const char *interfaceId) |
| Create a new IEC61850-9-2 Sampled Values publisher. More...
|
|
LIB61850_API SVPublisher | SVPublisher_createEx (CommParameters *parameters, const char *interfaceId, bool useVlanTag) |
| Create a new IEC61850-9-2 Sampled Values publisher. More...
|
|
LIB61850_API SVPublisher | SVPublisher_createRemote (RSession session, uint16_t appId) |
| Create a new SVPublisher instance for R-SMV. More...
|
|
LIB61850_API SVPublisher_ASDU | SVPublisher_addASDU (SVPublisher self, const char *svID, const char *datset, uint32_t confRev) |
| Create an Application Service Data Unit (ASDU) and add it to an existing Sampled Values publisher. More...
|
|
LIB61850_API void | SVPublisher_setupComplete (SVPublisher self) |
| Prepare the publisher for publishing. More...
|
|
LIB61850_API void | SVPublisher_publish (SVPublisher self) |
| Publish all registered ASDUs. More...
|
|
LIB61850_API void | SVPublisher_destroy (SVPublisher self) |
| Destroy an IEC61850-9-2 Sampled Values instance. More...
|
|
LIB61850_API void | SVPublisher_ASDU_resetBuffer (SVPublisher_ASDU self) |
| Reset the internal data buffer of an ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addINT8 (SVPublisher_ASDU self) |
| Reserve memory for a signed 8-bit integer in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setINT8 (SVPublisher_ASDU self, int index, int8_t value) |
| Set the value of a 8-bit integer in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addINT32 (SVPublisher_ASDU self) |
| Reserve memory for a signed 32-bit integer in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setINT32 (SVPublisher_ASDU self, int index, int32_t value) |
| Set the value of a 32-bit integer in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addINT64 (SVPublisher_ASDU self) |
| Reserve memory for a signed 64-bit integer in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setINT64 (SVPublisher_ASDU self, int index, int64_t value) |
| Set the value of a 64-bit integer in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addFLOAT (SVPublisher_ASDU self) |
| Reserve memory for a single precision floating point number in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setFLOAT (SVPublisher_ASDU self, int index, float value) |
| Set the value of a single precision floating point number in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addFLOAT64 (SVPublisher_ASDU self) |
| Reserve memory for a double precision floating point number in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setFLOAT64 (SVPublisher_ASDU self, int index, double value) |
| Set the value of a double precision floating pointer number in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addTimestamp (SVPublisher_ASDU self) |
| Reserve memory for a 64 bit time stamp in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setTimestamp (SVPublisher_ASDU self, int index, Timestamp value) |
| Set the value of a 64 bit time stamp in the ASDU. More...
|
|
LIB61850_API int | SVPublisher_ASDU_addQuality (SVPublisher_ASDU self) |
| Reserve memory for a quality value in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setQuality (SVPublisher_ASDU self, int index, Quality value) |
| Set the value of a quality attribute in the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setSmpCnt (SVPublisher_ASDU self, uint16_t value) |
| Set the sample count attribute of the ASDU. More...
|
|
LIB61850_API uint16_t | SVPublisher_ASDU_getSmpCnt (SVPublisher_ASDU self) |
| Get the sample count attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_increaseSmpCnt (SVPublisher_ASDU self) |
| Increment the sample count attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setSmpCntWrap (SVPublisher_ASDU self, uint16_t value) |
| Set the roll-over (wrap) limit for the sample counter. When reaching the limit the sample counter will be reset to 0 (default is no limit) More...
|
|
LIB61850_API void | SVPublisher_ASDU_enableRefrTm (SVPublisher_ASDU self) |
| Enables the transmission of refresh time attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setRefrTmNs (SVPublisher_ASDU self, nsSinceEpoch refrTmNs) |
| Set the refresh time attribute of the ASDU with nanosecond resolution. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setRefrTm (SVPublisher_ASDU self, msSinceEpoch refrTm) |
| Set the refresh time attribute of the ASDU with millisecond resolution. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setRefrTmByTimestamp (SVPublisher_ASDU self, Timestamp *refrTm) |
| Set the refresh time attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setSmpMod (SVPublisher_ASDU self, uint8_t smpMod) |
| Set the sample mode attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setSmpRate (SVPublisher_ASDU self, uint16_t smpRate) |
| Set the sample rate attribute of the ASDU. More...
|
|
LIB61850_API void | SVPublisher_ASDU_setSmpSynch (SVPublisher_ASDU self, uint16_t smpSynch) |
| Set the clock synchronization information. More...
|
|
LIB61850_API DEPRECATED SVPublisher | SampledValuesPublisher_create (CommParameters *parameters, const char *interfaceId) |
|
LIB61850_API DEPRECATED SVPublisher_ASDU | SampledValuesPublisher_addASDU (SVPublisher self, char *svID, char *datset, uint32_t confRev) |
|
LIB61850_API DEPRECATED void | SampledValuesPublisher_setupComplete (SVPublisher self) |
|
LIB61850_API DEPRECATED void | SampledValuesPublisher_publish (SVPublisher self) |
|
LIB61850_API DEPRECATED void | SampledValuesPublisher_destroy (SVPublisher self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_resetBuffer (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED int | SV_ASDU_addINT8 (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setINT8 (SVPublisher_ASDU self, int index, int8_t value) |
|
LIB61850_API DEPRECATED int | SV_ASDU_addINT32 (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setINT32 (SVPublisher_ASDU self, int index, int32_t value) |
|
LIB61850_API DEPRECATED int | SV_ASDU_addINT64 (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setINT64 (SVPublisher_ASDU self, int index, int64_t value) |
|
LIB61850_API DEPRECATED int | SV_ASDU_addFLOAT (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setFLOAT (SVPublisher_ASDU self, int index, float value) |
|
LIB61850_API DEPRECATED int | SV_ASDU_addFLOAT64 (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setFLOAT64 (SVPublisher_ASDU self, int index, double value) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setSmpCnt (SVPublisher_ASDU self, uint16_t value) |
|
LIB61850_API DEPRECATED uint16_t | SV_ASDU_getSmpCnt (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_increaseSmpCnt (SVPublisher_ASDU self) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setRefrTm (SVPublisher_ASDU self, uint64_t refrTm) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setSmpMod (SVPublisher_ASDU self, uint8_t smpMod) |
|
LIB61850_API DEPRECATED void | SV_ASDU_setSmpRate (SVPublisher_ASDU self, uint16_t smpRate) |
|