Example #1
0
 public void SetSrc(SnapSrc src, byte channel)
 {
     SetSrc(src);
     byte[] ch_addr = { 0x31, 0x00, 0x00, 0x01 };
     _rbcp.Write(ch_addr, new byte[] { channel });
 }
Example #2
0
 public void SetSrc(SnapSrc src)
 {
     byte[] src_addr = { 0x31, 0x00, 0x00, 0x00 };
     _rbcp.Write(src_addr, new byte[] { (byte)src });
 }