Assigning wrong rack number on isoTCP
Status: Beta
Brought to you by:
lettoz
Hi. In source file nodave.c (version 0.8.4.6) on line 4025 is wrong assigning CPU rack number.
Originally was in there:
dc->msgOut[17]=dc->rack+1;
dc->msgOut[18]=dc->slot;
and it should be:
dc->msgOut[18]= dc->slot | (dc->rack << 5);
Byte with Rack/Slot definition: bit 0..4 Slot; bit 5..7 Rack
Source with right rack number assinging