Skip to content

Commit

Permalink
Merge pull request #523 from HazenBabcock/fix/AlliedVisionCamera
Browse files Browse the repository at this point in the history
Set isSequenceable=false as this is not implemented.
  • Loading branch information
nicost authored Nov 6, 2024
2 parents c8a28f3 + fa5a8f8 commit 33686ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DeviceAdapters/AlliedVisionCamera/AlliedVisionCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,8 @@ int AlliedVisionCamera::ClearROI()

int AlliedVisionCamera::IsExposureSequenceable(bool &isSequenceable) const
{
isSequenceable = false;

// TODO implement
return VmbErrorSuccess;
}
Expand Down Expand Up @@ -1408,4 +1410,4 @@ void AlliedVisionCamera::insertFrame(VmbFrame_t *frame)
});
}
}
}
}

0 comments on commit 33686ef

Please sign in to comment.