You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In devOmsCom.cc the hard-coded driver table of the oms58 is used.
I don't understand the construct, but shouldn't e.g. when using a MAXv card,
the driver table of that card (MAVv_access) be accessed?
Line 247:
if ((command == PRIMITIVE) && (mr->init != NULL) &&
(strlen(mr->init) != 0))
{
extern struct driver_table oms58_access;
/* Test for a "device directive" in the Initialization string. */
if ((mr->init[0] == '@') && (trans->tabptr == &oms58_access))
{
char *end = strrchr(&mr->init[1], '@');
if (end != NULL)
{
The text was updated successfully, but these errors were encountered:
@hjunkes reported the following in epics-modules/motor#179:
The text was updated successfully, but these errors were encountered: