Skip to content
Snippets Groups Projects

Fix for the UT ZS decoder

Merged Wojciech Krupa requested to merge ut/zs_decoder_fix into 2024-patches
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -61,7 +61,7 @@ public:
[[nodiscard]] constexpr unsigned int value() const { return m_value; };
[[nodiscard]] constexpr unsigned int channelID() const {
return ( extract<mask::strip>( m_value )) + maxstrip * m_lane;
return ( extract<mask::strip>( m_value ) ) + maxstrip * m_lane;
}
[[nodiscard]] constexpr unsigned int adc() const { return extract<mask::adc>( m_value ); }
Loading