Changeset 2278 for trunk/MagicSoft/Cosy/candrv
- Timestamp:
- 07/15/03 15:05:21 (21 years ago)
- Location:
- trunk/MagicSoft/Cosy/candrv
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/candrv/network.cc
r1953 r2278 105 105 106 106 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); 108 108 return; 109 109 -
trunk/MagicSoft/Cosy/candrv/nodedrv.cc
r2019 r2278 144 144 // 145 145 // 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 // 150 void NodeDrv::HandleSDOOK(WORD_t idx, BYTE_t subidx, LWORD_t data, timeval_t *tv) 149 151 { 150 152 const Bool_t gui = lout.IsOutputDeviceEnabled(MLog::eGui); -
trunk/MagicSoft/Cosy/candrv/nodedrv.h
r2019 r2278 69 69 70 70 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); 72 72 virtual void HandleSDOError(LWORD_t data); 73 73 -
trunk/MagicSoft/Cosy/candrv/vmodican.cc
r1953 r2278 950 950 cout << "Cannot open device '" << dev << "'... exit." << endl; 951 951 cout << strerror(errno) << endl; 952 return; 952 953 // exit(1); // open module 953 954 }
Note:
See TracChangeset
for help on using the changeset viewer.