Hello, I am trying to start a continuous Rx stream with the X310. I have it working fine for the N210 and B200mini, but for some reason the X310 only sends a single shot of samples. I know this because I am using wireshark to look at the interface. Below is the code I am using.
Thank you. Mark receiver.send_command(&StreamCommand { command_type: StreamCommandType::StartContinuous, time: StreamTime::Now, }) pub mod uhd_stream_mode_t { pub type Type = ::std::os::raw::c_uint; pub const UHD_STREAM_MODE_START_CONTINUOUS: Type = 97; pub const UHD_STREAM_MODE_STOP_CONTINUOUS: Type = 111; pub const UHD_STREAM_MODE_NUM_SAMPS_AND_DONE: Type = 100; pub const UHD_STREAM_MODE_NUM_SAMPS_AND_MORE: Type = 109; }
_______________________________________________ USRP-users mailing list -- usrp-users@lists.ettus.com To unsubscribe send an email to usrp-users-le...@lists.ettus.com