Ignore:
Timestamp:
07/15/03 15:05:21 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/candrv
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/candrv/network.cc

    r1953 r2278  
    105105
    106106        case kSDO_TX_OK:     // answer to a SDO_TX message
    107             fNodes[node]->HandleSDOOK(idx, subidx, tv);
     107            fNodes[node]->HandleSDOOK(idx, subidx, data, tv);
    108108            return;
    109109
  • trunk/MagicSoft/Cosy/candrv/nodedrv.cc

    r2019 r2278  
    144144//
    145145// Print an "SDO idx/subidx set." from this device message.
    146 // This output is never redirected to the GUI
    147 //
    148 void NodeDrv::HandleSDOOK(WORD_t idx, BYTE_t subidx, timeval_t *tv)
     146// This output is never redirected to the GUI.
     147// In standard CANOpen operation data is meaningless (we are using
     148// it in the 'non-standard' CANOpen communication with the MACS)
     149//
     150void NodeDrv::HandleSDOOK(WORD_t idx, BYTE_t subidx, LWORD_t data, timeval_t *tv)
    149151{
    150152    const Bool_t gui = lout.IsOutputDeviceEnabled(MLog::eGui);
  • trunk/MagicSoft/Cosy/candrv/nodedrv.h

    r2019 r2278  
    6969
    7070    virtual void HandleSDO(WORD_t idx, BYTE_t subidx, LWORD_t val, timeval_t *tv);
    71     virtual void HandleSDOOK(WORD_t idx, BYTE_t subidx, timeval_t *tv);
     71    virtual void HandleSDOOK(WORD_t idx, BYTE_t subidx, LWORD_t data, timeval_t *tv);
    7272    virtual void HandleSDOError(LWORD_t data);
    7373
  • trunk/MagicSoft/Cosy/candrv/vmodican.cc

    r1953 r2278  
    950950        cout << "Cannot open device '" << dev << "'... exit." << endl;
    951951        cout << strerror(errno) << endl;
     952        return;
    952953//        exit(1);                       // open module
    953954    }
Note: See TracChangeset for help on using the changeset viewer.