TAS PLOC SUPV 3 #326

Merged
muellerr merged 9 commits from mueller/tas_ploc_supv_3 into develop 2022-11-28 18:26:44 +01:00
Showing only changes of commit bd3350c28a - Show all commits

View File

@ -1198,7 +1198,7 @@ class WriteMemory : public TcBase {
if (updateDataLen % 2 != 0) { if (updateDataLen % 2 != 0) {
// The data field must be two bytes aligned. Thus, in case the number of bytes to write is odd // The data field must be two bytes aligned. Thus, in case the number of bytes to write is odd
// a value of zero is added here // a value of zero is added here
data[updateDataLen + 1] = 0; data[updateDataLen] = 0;
} }
return returnvalue::OK; return returnvalue::OK;
} }