radio resilience competition update

2021-04-01 Thread Marc Newlin
Resilience Competition, or just familiarize yourself with the simulation environment, here is the information you need to get started: https://radioresilience.com/page/getting-started/ Happy Hacking! Marc Newlin

Re: [Discuss-gnuradio] How do YOU packet detect?

2015-03-04 Thread Marc Newlin
Have you looked at the narrowband example scripts? The benchmark_[rx|tx].py scripts support packetized QPSK. On Wed, Mar 4, 2015 at 11:54 AM, Richard Bell richard.be...@gmail.com wrote: Hi all, As the subject states, how have you detected packets in your packet based gnu radio SDR? The

[Discuss-gnuradio] For Sale: 2x USRP N210 rev 4 w/ SBX daugherboards

2014-09-16 Thread Marc Newlin
I am selling my two USRP N210's (rev 4) with SBX daughterboards so I can migrate to B210's. Both N210's are in excellent condition, and include SBX daughterboards and power supplies. I am selling the pair for $2800, which includes insured shipping within the US (or local pickup in the Seattle

Re: [Discuss-gnuradio] build error

2014-03-02 Thread Marc Newlin
BZS, This error indicates that you aren't linking against the boost filesystem library. In the CMakeLists.txt file within the lib directory of the custom block, there will be a section that looks similar to this: target_link_libraries( ${GNURADIO_RUNTIME_LIBRARIES} ) This indicates that

Re: [Discuss-gnuradio] build error

2014-03-02 Thread Marc Newlin
(please excuse the previous incomplete message) You will need to update the target_link_libraries section to add the following: ${Boost_FILESYSTEM_LIBRARY} This will link against the boost filesystem library and resolve the error you're receiving. - Marc On Sun, Mar 2, 2014 at 6:34 PM, Marc

Re: [Discuss-gnuradio] UHD stream tagging

2014-02-08 Thread Marc Newlin
The burst tagging won't cause the USRP to stop transmitting -- it tells the USRP not to expect any more samples, but any delay logic must be implemented in your code. On Sat, Feb 8, 2014 at 12:14 PM, Miki Lustig - KK6MRI miki.lus...@gmail.com wrote: I tried a similar thing but got the same

[Discuss-gnuradio] recommended DSP reading

2013-05-16 Thread Marc Newlin
Hello, I'm looking for recommended reading to better by understanding of DSP. I'm nearing the end of *The Scientist and Engineer's Guide to Digital Signal Processing*, and have found it to be an excellent resource on the fundamentals. I'm hoping to follow it up with a book or two to with a deeper

Re: [Discuss-gnuradio] recommended DSP reading

2013-05-16 Thread Marc Newlin
Thank you for that information. R Lyons' books are just what I was looking for. On Thu, May 16, 2013 at 3:00 PM, Martin Braun (CEL) martin.br...@kit.eduwrote: On Thu, May 16, 2013 at 01:46:40PM -0700, Marc Newlin wrote: I'm looking for recommended reading to better by understanding of DSP

Re: [Discuss-gnuradio] gr-modtool: command not found?

2013-04-21 Thread Marc Newlin
Nazmul, You can find your current GNU Radio version by running the following command: echo -e from gnuradio import gr\nprint gr.version() | python It looks like gr_modtool was added in version 3.6.4. Marc On Sun, Apr 21, 2013 at 6:50 PM, Nazmul Islam mnis...@winlab.rutgers.eduwrote: Hello,