| 1 | = StartRepeatIO = |
| 2 | Stop repeating communications main board to report I/O status. |
| 3 | |
| 4 | {{{ |
| 5 | int StopRepeatIO(int dev); |
| 6 | }}} |
| 7 | |
| 8 | == Parameters == |
| 9 | |
| 10 | * dev - 0 = main board I/O status, number of digital output card |
| 11 | |
| 12 | == Return Value == |
| 13 | |
| 14 | * Returns the result - OK success |
| 15 | |
| 16 | == Remarks == |
| 17 | |
| 18 | The main board or option card must already be opened by calling OpenMnBd first. The call does a wait for acknowledgement. If the application is using main board communication events these events may be called during the wait for acknowledgement. |
| 19 | |
| 20 | == Examples == |
| 21 | |
| 22 | {{{ |
| 23 | if(StopRepeatIO(1) == OK) |
| 24 | DisplayText(0, 0, "I/O status updates stopped"); |
| 25 | }}} |
| 26 | |
| 27 | == See Also == |
| 28 | |
| 29 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartRepeatIO StartRepeatIO] |