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
DataCount= (DataCount/4)*4;/* We expect RCAL data together with Rz data. One DFT result has two data in FIFO, real part and imaginary part. */
Should be: DataCount = (DataCount/4)*4;/* We expect voltage data together with current data. One DFT result has two data in FIFO, real part and imaginary part. */
The text was updated successfully, but these errors were encountered:
Body impedance calculation doesn't include RCAL or Rz values. But instead it deals with voltage and current.
ad5940-examples/examples/AD5940_BIA/BodyImpedance.c
Line 526 in 08c2331
Should be:
DataCount = (DataCount/4)*4;/* We expect voltage data together with current data. One DFT result has two data in FIFO, real part and imaginary part. */
The text was updated successfully, but these errors were encountered: