Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Frederik Wing
Hello Marcus, thank you very much for your hints! - You're using an ancient UHD version. Is there a reason you can't use a newer one? I am using Ubuntu 14.04 LTS and just pulled GNU Radio and UHD from the packet sources. There is no newer version available. And I don't like to compile myself u

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Marcus Müller
On 21.10.2014 13:47, Frederik Wing wrote: > Hello Marcus, > > thank you very much for your hints! - You're using an ancient UHD version. Is there a reason you can't use a newer one? >>> I am using Ubuntu 14.04 LTS and just pulled GNU Radio and UHD from the >>> packet sources. There

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Frederik Wing
- You're using an ancient UHD version. Is there a reason you can't use a newer one? >>>I am using Ubuntu 14.04 LTS and just pulled GNU Radio and UHD from the >>>packet sources. There is no newer version available. And I don't >>>like to >>>compile myself unless it is absolutely necessar

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Marcus Müller
Hi Frederik, On 21.10.2014 14:56, Frederik Wing wrote: > > I cannot believe that there is no solution to it since the "tags_demo" > application shows that it is indeed possible. :-/ that makes the two of us! I didn't get that when using tags_demo, you're not seeing the carrier that you use tags_dem

Re: [Discuss-gnuradio] Looking for simple ra

2014-10-21 Thread George Nychis
Hi Will, The subversion server is still up and your relevant code is at https://www.cgran.org/svn/projects/simple_ra Archive.org has a nice cache of CGRAN also: https://web.archive.org/web/20140702091149/https://cgran.org/wiki/simple_ra - George On Mon, Oct 20, 2014 at 6:20 PM, Will Caruana wr

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Frederik Wing
Hi Marcus, >> > I cannot believe that there is no solution to it since the "tags_demo" >> > application shows that it is indeed possible. :-/ > that makes the two of us! I didn't get that when using tags_demo, you're > not seeing the carrier that you use tags_demo; as far as I understood, > your ap

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Martin Braun
On 10/21/2014 03:53 PM, Frederik Wing wrote: > Hi Marcus, I cannot believe that there is no solution to it since the "tags_demo" application shows that it is indeed possible. :-/ >> that makes the two of us! I didn't get that when using tags_demo, you're >> not seeing the carrier that you

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gd question. The corresponding lines look something like [1] (while iterating over the tags in the current set of items): BOOST_FOREACH(const tag_t &my_tag, _tags) { ... else if(pmt::is_null(_length_tag_key) && pmt::equal(key, SO

[Discuss-gnuradio] GNU Radio in Python Tutorial - installing python block without C++

2014-10-21 Thread Michael Rahaim
Hi all, I've been going through the tutorials with a fresh install of GNURadio (Version 3.7.2.1) through Ubuntu's package manager (Ubuntu 14.04) and I've run into a few issues when attempting to install a python block (without any C++, as indicated in the tutorial: http://gnuradio.org/redmine/proj

[Discuss-gnuradio] Memory allocation issue

2014-10-21 Thread Ron Economos
I'm writing a block that requires a large amount of data to be processed in one iteration of the work function. If I call set_output_multiple() with 8100 * 130 = 1053000 items (of gr_complex), I get the following error: gr::vmcircbuf_sysv_shm: shmget(1): Invalid argument gr::vmcircbuf_sysv_shm: s

Re: [Discuss-gnuradio] Memory allocation issue

2014-10-21 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Ron, yep, that can be, within kernel-caused and total memory boundaries be configured to your heart's delight: echo $(( 1024 * 1024 * 1024 )) > /proc/sys/kernel/shmmax to set the maximum size shared mem buffer to 1GB. Greetings, Marcus On 21.10.

Re: [Discuss-gnuradio] Memory allocation issue

2014-10-21 Thread Jeff Long
Ron, See if you can set kernel.shmmax to something higher. You can check the current value with sysctl kernel.shmmax See sysctl(8). Jeff On 10/21/2014 04:12 PM, Ron Economos wrote: I'm writing a block that requires a large amount of data to be processed in one iteration of the work funct

Re: [Discuss-gnuradio] Memory allocation issue

2014-10-21 Thread Ron Economos
Marcus and Jeff, Works great. Thanks guys. BTW, the default on my Ubuntu 13.10 system was 33,554,432 bytes. best regards, Ron On 10/21/2014 09:19 AM, Marcus Müller wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Ron, yep, that can be, within kernel-caused and total memory boundari

[Discuss-gnuradio] GNU Radio 3.7.5.1 and live DVD released

2014-10-21 Thread Johnathan Corgan
GNU Radio release 3.7.5.1 is now available for download: http://gnuradio.org/releases/gnuradio/gnuradio-3.7.5.1.tar.gz GNU Radio Live DVD for 3.7.5.1: http://gnuradio.org/releases/gnuradio/iso/ubuntu-14.04.1-desktop-amd64-gnuradio.torrent MD5 sums: bfd2116b344a949aacc3d7e2eff07642 gnuradio-3.

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Nowlan, Sean
>From Marcus: > ... and that (wut) might be a bug, because it implies that, if the stream has > both a time tag and a sob tag, the > question whether the tx metadata has a time tag depends on in which order > these tags are sorted on the the > tag storage multimap. Which might be random, because

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sean, aaah good catch! Yes, that's right; sob is safe. Cheers, Marcus On 21.10.2014 19:19, Nowlan, Sean wrote: > From Marcus: >> ... and that (wut) might be a bug, because it implies that, if >> the stream has both a time tag and a sob tag, the

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Nowlan, Sean
I'm concerned that the problem Frederik is observing has to do with the very short burst he is sending, something like 5 samples. I suspect this requires 1 call each to work and tag_work per 5 sample burst, which seems like an awful lot of context switching and overhead. -Original Message--

Re: [Discuss-gnuradio] Memory allocation issue

2014-10-21 Thread Marcus Müller
Hi Ron, Yes, that seems to be linux kernel default: $>cd /usr/src/kernels/3.14.19* $>grep -REo '^[[:space:]]*#define[[:space:]]+SHMMAX[[:space:]]+0x[0-9a-f]+' include/uapi/linux/shm.h:#define SHMMAX 0x200 $>echo $((0x200)) 33554432 Cheers, Marcus PS: help, I'm being helped captive in a

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Marcus Müller
Sean, interesting point. Frederik, How does your carrier look when you send bursts of >500 samples? Greetings, Marcus On 21.10.2014 19:29, Nowlan, Sean wrote: > I'm concerned that the problem Frederik is observing has to do with the very > short burst he is sending, something like 5 samples.

Re: [Discuss-gnuradio] Transmitting bursts with GRC by inserting SOB and EOB

2014-10-21 Thread Nowlan, Sean
>> ## >> # Variables >> ## >> self.tx_gain = tx_gain = 15 >> self.samp_rate = samp_rate = 20 >> self.f_center = f_center = 1.47e9 >>

[Discuss-gnuradio] gr-qtgui Waterfall Time Axis

2014-10-21 Thread Garver, Paul W
I have some large spectrum records and I would like to use GR for analysis in a a sort of "off-line" mode. I want to visualize the data using the spectrogram and then identify subsets of interesting features (e.g. WiFi Packets in 2.4 GHz) by frequency and time coordinates. Essentially, I want

[Discuss-gnuradio] iir_filter does not work with specified feedback taps?

2014-10-21 Thread Alex Zhang
Hi All, Any guys who ever used IIR filters? I got problems as below: I want the IIR filter works as: y[n] = 1.8*x[n] + 0.8*y[n-1] Then I set the feed forward taps as [1.8], feeback taps as [0.8], just like self.iir_filter_xxx_0 = filter.iir_filter_ffd(([1.8]), ([0.8]), True) But my testing resul

Re: [Discuss-gnuradio] Scaling down IFFT values

2014-10-21 Thread zealdeal
Did you mean something like: self.connect(self._pkt_input, 0), self.scale, (self.preambles,0)) ? That's not working as it's giving itemsize mismatch error! -- View this message in context: http://gnuradio.4.n7.nabble.com/Scaling-down-IFFT-values-tp50833p50967.html Sent from the GnuRadio maili

Re: [Discuss-gnuradio] Scaling down IFFT values

2014-10-21 Thread zealdeal
Also I tried manually scaling down the output array in fft_vcc_fftw:work function. That has no effect no IFFT output! -- View this message in context: http://gnuradio.4.n7.nabble.com/Scaling-down-IFFT-values-tp50833p50968.html Sent from the GnuRadio mailing list archive at Nabble.com. ___

[Discuss-gnuradio] WiMAX scanner

2014-10-21 Thread Sebastian Komorowski
Hello, I am interested in WiMAX technology (802.16e). In my research I am dealing with algorithms for admission control in Matlab. Typically these algorithms are located “within base station” – although they are not standardized by any organization. In simulations it is simple to “deploy them”