NRC_JobfileInsertDOUT(int line, int port, int value)
Insert DOUT instruction into the job file
Before calling this function, please call NRC_CreateJobfile(std::string jobname) or NRC_OpenJobfile(std::string jobname) to create or open a job file
Type
int=>Insert DOUT instruction into the job file
Return value | Description |
---|---|
0 | The function is called successfully |
-101 | Invalid input parameter |
-102 | The target object does not exist. This typically occurs when the system initialization is incomplete, and calling other functions may return this value |
-103 | The target object is currently in an inoperable state |
Parameter Option
Parameter | Type | Description |
---|---|---|
line | int | The line number where the instruction will be inserted, parameter range: 0 < line < (NRC_GetJobfileLineSum()+1) |
port | int | The number of the digital output port to output the level, parameter range: port > 0 |
value | int | Port output status; 0: low level, 1: high level |
Sample code
NRC_JobfileInsertDOUT(1,1,1);
//Insert DOUT instruction at the first line of the job file, setting DOUT1 to output a high level