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
The revision V chips have two additional resolutions that can be set: TwelveBitV and FourteenBitV. Those are power optimized versions of TwelveBit and FourteenBit respectively. Currently using them is not intuitive because the slope() isn't calculated correctly.
The wrong calculation comes from the NumberOfBits trait implementation:
The TwelveBitV and FourteenBitV variants are handled by the wildcard and thus are wrongly assigned 16 bits. I think the two variants just need to be matched when the revision_v feature is enabled.
The text was updated successfully, but these errors were encountered:
The revision V chips have two additional resolutions that can be set:
TwelveBitV
andFourteenBitV
. Those are power optimized versions ofTwelveBit
andFourteenBit
respectively. Currently using them is not intuitive because theslope()
isn't calculated correctly.The wrong calculation comes from the
NumberOfBits
trait implementation:The
TwelveBitV
andFourteenBitV
variants are handled by the wildcard and thus are wrongly assigned 16 bits. I think the two variants just need to be matched when therevision_v
feature is enabled.The text was updated successfully, but these errors were encountered: