Skip to content

Commit

Permalink
Source updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mattalvarado committed Nov 7, 2024
1 parent c172deb commit 626b493
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/LibMultiSense/details/public.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1345,15 +1345,15 @@ Status impl::getMtu(int32_t& mtu)

Status impl::setBestMtu()
{
uint cur_mtu = MAX_MTU_SIZE;
uint max_mtu = MAX_MTU_SIZE;
uint min_mtu = MIN_MTU_SIZE;
uint bisections = 0;
uint32_t cur_mtu = MAX_MTU_SIZE;
uint32_t max_mtu = MAX_MTU_SIZE;
uint32_t min_mtu = MIN_MTU_SIZE;
uint32_t bisections = 0;
Status status = Status_Ok;

//
// v2.2 and older do not support testing MTU

if (m_sensorVersion.firmwareVersion <= 0x0202)
return Status_Unsupported;

Expand Down

0 comments on commit 626b493

Please sign in to comment.