kernelv_sync_read_request()
Prototype
signed long int | kernelv_sync_read_request (unsigned short port, |
Description
Synchronous reading of variables. The variables are identified by Port, indexGroup and indexOffset.
At present, the following ports are supported:
Port number | CNC task |
551 | GEO task |
552 | SDA task |
553 | COM task |
The meaning of indexGroup and indexOffset depends on the addressed port and can be found in the documentation.
An error code is returned if the function is called while the CNC kernel has not yet started.
Parameter
Name | Type | Meaning |
port | unsigned short | Port from which the data is to be read. |
indexGroup | unsigned long* | Index group of the data item to be read |
indexOffset | unsigned long* | Index offset of the data item to be read |
length | unsigned long* | Size of the memory in bytes for the value to be read. |
data | void* | Pointer to memory for the value to be read |
Return values
Symbol | Value | Meaning |
| 0 | The function was executed without error. |
| -3 | The simulation CNC kernel was not yet initialised. |
| 6 | The transferred port number is not known. |
| 0x701 | The requested service is not supported. |
| 0x702 | Index group is invalid |
| 0x703 | Index offset is invalid |
| 0x704 | The variable addressed must not be read. |
| 0x705 | The memory provided is too small for the value to be returned. |