LitDev.Engines.OutputReport.OutputReport C# (CSharp) Method

OutputReport() public method

Construction. Setup the buffer with the correct output report length dictated by the device
public OutputReport ( HIDDevice oDev ) : System
oDev HIDDevice Creating device
return System
        public OutputReport(HIDDevice oDev)
            : base(oDev)
        {
            SetBuffer(new byte[oDev.OutputReportLength]);
        }
OutputReport