Hello Trey,
Going beyond the question raised by the Skinny, I wonder if it is possible to associate the stdout and stdin to SCIA?
I saw an example where this was done with the stdout:
//Redirect STDOUT to SCI
status = add_device("scia", _SSA, SCI_open, SCI_close, SCI_read, SCI_write, SCI_lseek, SCI_unlink, SCI_rename);
fid = fopen("scia","w");
freopen("scia:", "w", stdout);
setvbuf(stdout, NULL, _IONBF, 0);
How this code becomes to add the stdin?
thanks
Cristiano Scardini