Skip to content

Commit

Permalink
fix naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinyu Li authored and Xinyu Li committed Aug 2, 2024
1 parent 197e2f3 commit 3545616
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 80 deletions.
4 changes: 2 additions & 2 deletions src/bb/image-io/bb.h
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ using U3VCamera2_U16x2 = U3VCamera2<uint16_t, 2>;
template<typename T, int D>
class U3VCameraN : public ion::BuildingBlock<U3VCameraN<T, D>> {
public:
BuildingBlockParam<int32_t> num_devices{"num_devices", 2};
BuildingBlockParam<int32_t> num_devices{"num_devices", 2}; // NOTE: num_devices refers to sensor count not usb device count
BuildingBlockParam<bool> frame_sync{"frame_sync", false};
BuildingBlockParam<bool> realtime_display_mode{"realtime_display_mode", false};

Expand Down Expand Up @@ -990,7 +990,7 @@ using U3VCameraN_U16x2 = U3VCameraN<uint16_t, 2>;

class U3VCameraGenDC : public ion::BuildingBlock<U3VCameraGenDC> {
public:
BuildingBlockParam<int32_t> num_devices{"num_devices", 2};
BuildingBlockParam<int32_t> num_devices{"num_devices", 2}; // NOTE: num_devices refers to sensor count not usb device count
BuildingBlockParam<bool> frame_sync{"frame_sync", false};
BuildingBlockParam<bool> realtime_display_mode{"realtime_display_mode", false};

Expand Down
Loading

0 comments on commit 3545616

Please sign in to comment.