Program Listing for File SPIOutProperties.hpp

Return to documentation for file (include/depthai/properties/SPIOutProperties.hpp)

#pragma once

#include "depthai/properties/Properties.hpp"

namespace dai {

struct SPIOutProperties : PropertiesSerializable<Properties, SPIOutProperties> {
    std::string streamName;

    int busId = 0;

    ~SPIOutProperties() override;
};

DEPTHAI_SERIALIZE_EXT(SPIOutProperties, streamName, busId);

}  // namespace dai