[Discuss-gnuradio]Reprogramming the fpga

2007-10-17 Thread LEMONed
Hi I add some logic at usrp_std.v and make .sof file with Quartus II but I don't know that how program to fpga. so I just wanted to know how do you go about Programming/reprogramming the FPGA in the USRP board (with byteblaster or anyting) at windows Thanks in

[Discuss-gnuradio]Reprogramming the fpga

2007-10-17 Thread 서병진
Hi I add some logic at usrp_std.v and make .sof file with Quartus II but I don't know that how program to fpga. so I just wanted to know how do you go about Programming/reprogramming the FPGA in the USRP board (with byteblaster or anyting) at windows Thanks in Advance LEMONed

[Discuss-gnuradio] Maximal signal bandwith for the usrp

2007-10-17 Thread JALLON Pierre 201932
Dear all, According the USRP v4 description: http://www.ettus.com/downloads/usrp_v4.pdf http://www.ettus.com/downloads/usrp_v4.pdf the usrp is able to process signals up to 16MHz. As the USB port is limited to 60MB/s, and if the samples are coded on 32 bits (16 for Q and 16 for I), the

[Discuss-gnuradio] Processing of OFDM signals

2007-10-17 Thread JALLON Pierre 201932
Dear all, As anyone been able to process OFDM signals with the USRP? In particular, I have seen that many works have been started to develop a HDTV decoder with the USRP. Have you been able to decode the OFDM symbols (and decode the HDTV signals) ? Thanks, Best regards, Pierre

Re: [Discuss-gnuradio] Maximal signal bandwith for the usrp

2007-10-17 Thread Martin Dvh
JALLON Pierre 201932 wrote: Dear all, According the USRP v4 description: http://www.ettus.com/downloads/usrp_v4.pdf http://www.ettus.com/downloads/usrp_v4.pdf the usrp is able to process signals up to 16MHz. As the USB port is limited to 60MB/s, and if the samples are

[Discuss-gnuradio] Re: Maximal signal bandwith for the usrp

2007-10-17 Thread Patrick Strasser
JALLON Pierre 201932 schrieb: As the USB port is limited to 60MB/s That is net bandwith. You have to subtract the overhead. Moreover you have to find chipsets that really support this rate. Currently 32MB/s is a achievable value for the USRP. Patrick -- Engineers motto: cheap, good, fast:

[Discuss-gnuradio] How can I set the frequency of VCO?

2007-10-17 Thread tarara
Hi, I have written a code to set the frequency of VCO (ADF4360-0): bool flag = true; bool usrp_standard_rx::set_freq(double frequenza) { vectorint a; frequenza += -4e6; a = compute_regs(frequenza); if(a.at(0)==0) return false; write_all(a.at(0),a.at(1),a.at(2)); return true;

[Discuss-gnuradio] Help:How to print the payload in benchmark_ofdm_tx.py

2007-10-17 Thread Archana Ragothaman
Hello, I am trying to print the payload in the send_pkt function defined in ofdm.py(/gnuradio-core/src/python/gnuradio/blks2impl). I have used the following lines of code in send_pkt function. f = open(txdata.txt,a) s=string(payload) f.write(s) f.close() However no file is created. I want to

Re: [Discuss-gnuradio] Help:How to print the payload in benchmark_ofdm_tx.py

2007-10-17 Thread Eric Blossom
On Wed, Oct 17, 2007 at 05:07:37PM -0400, Archana Ragothaman wrote: Hello, I am trying to print the payload in the send_pkt function defined in ofdm.py(/gnuradio-core/src/python/gnuradio/blks2impl). I have used the following lines of code in send_pkt function. f = open(txdata.txt,a)