I tried Reflex 62/64 driver for SCR 60 with some changes on
communication protocol, but reader gave no response. If I put some lines
in IO_Write() serial.c, the driver works.
// New lines added
FD_ZERO(&rfds);
FD_SET(handle, &rfds);
rval = select (FD_SETSIZE, &rfds, NULL, NULL,
&tv);
I just put some code I whipped up today which defines a CT-API API which
works with the Reflex 62/64. Remember this is the lowest level API and
has one more API above it which will be the Dynamically loadable object
which can be accessed from the resource manager. CT-API is nice for
low-level co