Changeset 1953 for trunk/MagicSoft/Cosy/candrv
- Timestamp:
- 04/12/03 19:06:27 (22 years ago)
- Location:
- trunk/MagicSoft/Cosy/candrv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/candrv/network.cc
r1727 r1953 97 97 98 98 case kSDO_TX3: // answer to 0x40 with 2 bytes of data 99 fNodes[node]->HandleSDO(idx, subidx, data >>16, tv);99 fNodes[node]->HandleSDO(idx, subidx, data&0xffff, tv); 100 100 return; 101 101 102 102 case kSDO_TX1: // answer to 0x40 with 1 byte of data 103 fNodes[node]->HandleSDO(idx, subidx, data >>24, tv);103 fNodes[node]->HandleSDO(idx, subidx, data&0xff, tv); 104 104 return; 105 105 -
trunk/MagicSoft/Cosy/candrv/nodedrv.cc
r1804 r1953 526 526 void NodeDrv::StopGuarding() 527 527 { 528 if (!fTimerOn) 529 return; 530 528 531 fTimeout->TurnOff(); 529 532 fTimerOn = kFALSE; -
trunk/MagicSoft/Cosy/candrv/vmodican.cc
r1804 r1953 880 880 881 881 while (!Send(&msg)); 882 882 #ifdef EXPERT 883 883 lout << "- CobId 0x" << hex << setfill('0') << setw(3) << cobid << " enabled." << endl; 884 #endif 884 885 } 885 886
Note:
See TracChangeset
for help on using the changeset viewer.