You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For sending I2C data in daisy chain LTC takes 6 bytes of data and 2 bytes of PEC. At line 4290-4297 in pTxBuff array space for PEC is not provided. Right now PEC is overlapping the data.
Eg. pTxBuff[4u + (i * 6u)] = cmd_data[0]; --> pTxBuff[4u + (i * 8u)] = cmd_data[0];
The text was updated successfully, but these errors were encountered:
For sending I2C data in daisy chain LTC takes 6 bytes of data and 2 bytes of PEC. At line 4290-4297 in pTxBuff array space for PEC is not provided. Right now PEC is overlapping the data.
Eg. pTxBuff[4u + (i * 6u)] = cmd_data[0]; --> pTxBuff[4u + (i * 8u)] = cmd_data[0];
The text was updated successfully, but these errors were encountered: