[USRP-users] Audio Control loop testing

2017-09-15 Thread Benny Alexandar via USRP-users
Hi, I want to create an artificial audio drift in transmitter side and test it using my audio control loop in receiver. This is what I'm planning. Take an audio wav file which is sampled at 12 kHz. Re sample it such that the sample rate is now having a drift of 100 ppm, ie with sample frequenci

Re: [USRP-users] Audio Control loop testing

2017-09-19 Thread Benny Alexandar via USRP-users
d clock matching, and frankly, you're not showing much progress at that over last 10 months. Best regards, Marcus On 09/16/2017 05:38 AM, Benny Alexandar via USRP-users wrote: Hi, I want to create an artificial audio drift in transmitter side and test it using my audio control loop in receiv

[USRP-users] B210 external clock and introducing drift

2017-10-13 Thread Benny Alexandar via USRP-users
Hi, I'm using USRP B210 for streaming IQ data thru RF cable to my digital radio receiver. I want to use an external clock generator and feed the clock to B210. I see there are tow connector options to give external clock and PPS input. My requirement is to give an external clock and introdu

Re: [USRP-users] B210 external clock and introducing drift

2017-10-13 Thread Benny Alexandar via USRP-users
rough RF cable". But the external 10MHz reference steers ALL of the relevant clocks in the device, including synthesizer reference clocks, ADC clocks, FPGA clocks, etc. On 2017-10-13 12:33, Benny Alexandar via USRP-users wrote: Hi, I'm using USRP B210 for streaming IQ data thru

[USRP-users] Gnu radio IQ streaming

2017-12-10 Thread Benny Alexandar via USRP-users
Hi, I want to stream an IQ file base band signal using usrp. The format of IQ signal is 16bit complex values of I and Q each interleaved and having sample rate of 48kHz stored in a file as follows [IQIQIQ]. I created a flow graph in usrp by selecting file block as source and used the block

Re: [USRP-users] Gnu radio IQ streaming

2017-12-11 Thread Benny Alexandar via USRP-users
Sent: Monday, December 11, 2017 7:34 PM To: Benny Alexandar Cc: usrp-users Subject: Re: [USRP-users] Gnu radio IQ streaming Add a multiply block after ishort and multiply by 1.0/(2**15-1) or thereabouts. (If you only are using 14 bits of that 16 b, do 14) On Dec 10, 2017 07:00, "Benny Alexanda

[USRP-users] IQ transmission using grc

2018-03-20 Thread Benny Alexandar via USRP-users
Hi, I have an IQ file sampled at 48kHz and want to transmit through gnu radio. The IQ samples are each 16bit, and stored interleaved in a file ie, IQIQIQIQ... I 16 bit and Q 16bit I tried creating a grc using iShort to Complex block and send to USRP sink block (usrp n210), but the signal receiv

Re: [USRP-users] IQ transmission using grc

2018-03-21 Thread Benny Alexandar via USRP-users
le has simply been played back at a higher rate. Best regards, Marcus On Tue, 2018-03-20 at 12:58 -0400, Marcus D. Leech via USRP-users wrote: > On 03/20/2018 12:37 PM, Benny Alexandar via USRP-users wrote: > > Hi, > > > > I have an IQ file sampled at 48kHz and want to transmit

Re: [USRP-users] IQ transmission using grc

2018-03-23 Thread Benny Alexandar via USRP-users
Tue, 2018-03-20 at 12:58 -0400, Marcus D. Leech via USRP-users wrote: > On 03/20/2018 12:37 PM, Benny Alexandar via USRP-users wrote: > > Hi, > > > > I have an IQ file sampled at 48kHz and want to transmit through gnu > > radio. The IQ samples are each 16bit, and stored int

Re: [USRP-users] IQ transmission using grc

2018-03-26 Thread Benny Alexandar via USRP-users
is 500kS/s and that should work without a problem. Regards, Kyeong Su Shin ____ 보낸 사람: Benny Alexandar via USRP-users 대신 USRP-users 보낸 날짜: 2018년 3월 24일 토요일 오후 2:32:24 받는 사람: Marcus Müller via USRP-users; Marcus D. Leech; Marcus Müller 제목: Re: [USRP-users] IQ transmi

[USRP-users] Py Threads

2019-03-10 Thread Benny Alexandar via USRP-users
Hi All, Its known that using Python threads won't result in teh concurrency for process oriented functions. Unless you use process instead of threads you won't get concurrency in Python. How it is managed in UHD or Gnu Radio ? -ben ___ USRP-users mai

Re: [USRP-users] Py Threads

2019-03-11 Thread Benny Alexandar via USRP-users
or the GNU Radio side: All GNU Radio Blocks run in their separate, "real" thread and hence are actually fully concurrent. All resulting thread-safety concerns do arise. Best regards, Marcus Müller On Sun, 2019-03-10 at 11:56 +0000, Benny Alexandar via USRP-users wrote: > Hi All, > >