RE: [EXTERNAL] Request for GNU Radio OOT for Sending and Receiving VITA49 Data in Amazon Format on AWS

2024-09-27 Thread Jim Melton
tps://www.cyberradiosolutions.com/GNURadio.php> (formerly owned by G3, now owned by Epiq) found here: https://github.com/CyberRadio/gr-cyberradio (because I was using one of their radios). I hope it’s helpful --- Jim Melton Sent: Friday, September 27, 2024 06:54 To: GNURadio Discussion List Subject: [EX

RE: [EXTERNAL] Run a python script interactively from GNU Radio

2024-07-03 Thread Jim Melton
Jim, This really has little to do with GNU Radio and more to do with Python/GUI concurrency. As a general rule, a GUI should never perform a “blocking” operation. Since your application has its own “event loop”, it is fatal to pass control to it from another event loop. Rather than calling

RE: 2 SDRs – Parallel Programming

2024-01-05 Thread Jim Melton
on GNU Radio application could achieve them. Maybe my brain is frozen in the past and it is very doable now, but that hasn’t been my experience. --- Jim Melton Sent: Friday, January 5, 2024 05:39 To: marcus.muel...@ettus.com; discuss-gnuradio@gnu.org Subject: [EXTERNAL] Re: 2 SDRs – Parallel Program

RE: Re: Selector error - "IndexError: output_index must be < noutputs"

2023-09-06 Thread Jim Melton
some other delegation service (an indirect way to do the same thing). There are many ways to skin the cat. I’m sorry I can’t be more helpful, but my GRC-fu is rusty. --- Jim Melton Non-Sensitive From: Elmore Family Sent: Wednesday, September 6, 2023 11:34 To: discuss-gnuradio@gnu.org Subject

RE: Re: Selector error - "IndexError: output_index must be < noutputs"

2023-09-05 Thread Jim Melton
lustrative purposes). Hope this helps. --- Jim Melton Non-Sensitive From: Elmore's Sent: Friday, September 1, 2023 20:28 To: discuss-gnuradio@gnu.org Subject: [EXTERNAL] Re: Selector error - "IndexError: output_index must be < noutputs" Jim, I have attached a greatly sim

RE: Selector error - "IndexError: output_index must be < noutputs"

2023-08-28 Thread Jim Melton
Don't you need to instantiate "Receive"? --- Jim Melton Non-Sensitive From: discuss-gnuradio-bounces+jim.melton=sncorp@gnu.org On Behalf Of Elmore's Sent: Monday, August 28, 2023 09:15 To: discuss-gnuradio@gnu.org Subject: [EXTERNAL] Selector error - "IndexEr

Re: Re: why udp source and sink not work effieciny in gnuradio?

2023-07-05 Thread Jim Melton
Also, you need a throttle between your file source and UDO sink or you will try to send as fast as the file can read (which is almost certainly faster than your network. And, high speed network I/O generally requires some kernel tuning. Sent from my iPhone > On Jul 4, 2023, at 3:57 AM, Marcu

RE: Re: Getting GPS data into stream

2023-05-04 Thread Jim Melton
data science tool (R, Python/numpy/pandas, etc.) and you quickly see how pushing Excel issues into the data representation layer is a losing proposition. --- Jim Melton -Original Message- Sent: Thursday, May 4, 2023 01:40 To: discuss-gnuradio@gnu.org Subject: [EXTERNAL] Re: Getting GPS d

RE: Question on dropped samples

2023-04-05 Thread Jim Melton
se this interface has a fixed packet size. It's harder if your block does not. --- Jim Melton Sent: Wednesday, April 5, 2023 16:40 To: GNURadio Mailing List Subject: [EXTERNAL] Question on dropped samples I was working on a block that I thought was going to be super simple, but have now r

RE: Wav source: playing speed and playing startup instant

2023-02-13 Thread Jim Melton
My apologies; wavfile_source does not inherit from file_source, so my answer does not apply. --- Jim Melton From: Jim Melton Sent: Monday, February 13, 2023 10:23 To: 'discuss-gnuradio@gnu.org' Subject: RE: [EXTERNAL] Wav source: playing speed and playing startup instant I woul

RE: Wav source: playing speed and playing startup instant

2023-02-13 Thread Jim Melton
I would add that “playback speed” will be determined either by upstream blocks, or a Throttle block that you add after the file. --- Jim Melton From: Jim Melton Sent: Monday, February 13, 2023 10:20 To: discuss-gnuradio@gnu.org Subject: RE: [EXTERNAL] Wav source: playing speed and playing

RE: Wav source: playing speed and playing startup instant

2023-02-13 Thread Jim Melton
If your question is how to subset the file, see https://wiki.gnuradio.org/index.php/File_Source Offset and Length parameters. If your question is how to use a GUI slider to accomplish this, I’ll defer to others. --- Jim Melton From: discuss-gnuradio-bounces+jim.melton=sncorp@gnu.org On

RE: Re: Qt widgets Improvement

2023-01-30 Thread Jim Melton
I'd propose that nothing you do *requires* Qt. There are many uses for GUI-less flowgraphs. Qt is a heavyweight framework; it should not be required in order to build GRC flowgraphs. --- Jim Melton -Original Message- From: discuss-gnuradio-bounces+jim.melton=sncorp@gnu.org

RE: Re: Import error using an OOT

2022-12-12 Thread Jim Melton
n. So, then, the obvious implication is that your file is not being read. As Johannes Demel pointed out, > The `./` part in you file name is relative to the folder where you run > Python. It is not relative to the `.py` file. Even if you don't specify "./", it is assumed.

RE: GnuRadio within docker container access to ettus/n310 requires host mode network

2022-10-19 Thread Jim Melton
this to work. What you are observing is less a limitation of GRC and more the normal behavior of Docker. --- Jim Melton From: Discuss-gnuradio On Behalf Of M Esc Sent: Wednesday, October 19, 2022 06:51 To: discuss-gnuradio@gnu.org Subject: [EXTERNAL] GnuRadio within docker container access to

RE: Re: Developing KrakenSDR Source

2022-08-17 Thread Jim Melton
contiguous output. Also realize that a vector of size 2^20 counts as one item. Using vectors could put pressure on the buffer allocation machinery. --- Jim Melton From: Discuss-gnuradio On Behalf Of Carl Laufer Sent: Wednesday, August 17, 2022 07:10 To: Jeff Long Cc: GNURadio Discussion List

RE: Re: Number of samples processed in the work function

2022-06-28 Thread Jim Melton
radio/blob/e758c2747e1c32485574458eb7eaac982137b136/gr-CyberRadio/lib/vita_udp_rx_impl.cc#L582 (there is partial buffer handling in it, because I still thought set_min_noutput_items did something when I modified it last) --- Jim Melton Sr Principal Software Engineer Sierra Nevada Corpor

RE: work function sleep

2022-06-07 Thread Jim Melton
rary that includes boost::chrono, but since std::chrono is in the C++11 standard, you can just use that. Using standard C++, your example would be: std::this_thread::sleep_for(std::chrono::milliseconds(10)); --- Jim Melton From: Discuss-gnuradio On Behalf Of Perkins, Daniel (US) Sent: Tuesday

RE: Re: Performance counters in GNU Radio

2022-05-10 Thread Jim Melton
You need: [PerfCounters] on = True in $HOME/.gnuradio/config.conf --- Jim Melton -Original Message- From: Discuss-gnuradio On Behalf Of Ryan Volz Sent: Tuesday, May 10, 2022 12:08 To: Marcin Puchlik ; GNURadio Discussion List Subject: [EXTERNAL] Re: Performance counters in GNU

RE: Removing Python Bindings from 3.9 OOT

2022-03-30 Thread Jim Melton
next few months I’m looking to upgrade my GNU Radio version, so I’m glad you are on top of this :P --- Jim Melton Sr Principal Software Engineer Sierra Nevada Corporation 303.566.9582 (o) | 303.862.2459 (m) jim.mel...@sncorp.com<mailto:jim.mel...@sncorp.com> | sncorp.com<https://www.s

RE: Creating my own Random Source

2021-11-08 Thread Jim Melton
your CMakeLists.txt file), it won’t be supported. Try replacing byte with std::byte and never ever write “using namespace std” ever again. If that doesn’t work, make sure you enabled C++17 (see https://crascit.com/2015/03/28/enabling-cxx11-in-cmake/). --- Jim Melton From: Discuss-gnuradio

RE: Re: Reading tags from ZMQ in Python

2021-11-01 Thread Jim Melton
, as a 3-tuple of PMT serialized values (key, value, srcid) Now, I don’t know if it is exposed to Python or not, but there is a corresponding parse_tag_header that is designed to pull this thing apart and return how many bytes it consumed. That’s your generalized solution. --- Jim Melton From

RE: Reading tags from ZMQ in Python

2021-10-28 Thread Jim Melton
to whatever the sender produces. --- Jim Melton From: Discuss-gnuradio On Behalf Of Temir Karakurum Sent: Thursday, October 28, 2021 14:14 To: discuss-gnuradio@gnu.org Subject: [EXTERNAL] Reading tags from ZMQ in Python Hi, I am looking for a general solution to separate IQ data and tags

RE: Re: complex numbers in GRC missing documentation?

2021-10-21 Thread Jim Melton
uot; is current), and now I learn that Python supports it as well. I like "complex(0.5,0.5)" as much less ambiguous. Of course, once you know about "j" it's easy to use... --- Jim Melton -Original Message- From: Discuss-gnuradio On Behalf Of Aardric Sent:

Re: GNU Radio for Radar Applications

2021-10-21 Thread Jim Melton
computationally intractable. If your I/Q is IF and your sample rate is reasonable, then it is feasible. Also I have no experience with the TX side, but others do. For algorithm development using recorded data I think you’ll be pleased. Jim Melton, BQ ‘82 Sent from my iPhone > On Oct

RE: why when i use gnuradio for USRP with UHD for high sample rate record file is not work

2021-09-21 Thread Jim Melton
The issue is that you can’t write to disk as fast as your samples are coming in. This is a fundamental limitation of recording high rate data. --- Jim Melton Principal Software Engineer From: Discuss-gnuradio On Behalf Of ?? ??? Sent: Tuesday, September 21, 2021 07:40 To: discuss-gnuradio

RE: Re: Re: Why does this dump core?

2021-09-17 Thread Jim Melton
invoked. That ctor demonstrably instantiates an object where message_port_register_out dumps core. Whether that is desired behavior or not is another matter. In my case, it was failure to properly initialize a virtual base class. --- Jim Melton From: Jim Melton Sent: Wednesday, September 15

RE: Re: Re: Why does this dump core?

2021-09-15 Thread Jim Melton
pl::vita_udp_rx_impl(Cfg const& cfg) : gr::block("vita_udp_rx", gr::io_signature::make(0, 0, 0), gr::io_signature::make(1, 1, sizeof(gr_complex))), … { … } Then it works. --- Jim Melton From: Discuss-gnuradio On Behalf Of Jeff Long Sent: Wednesday,

RE: Re: Why does this dump core?

2021-09-15 Thread Jim Melton
ture::make(0, 0, 0), gr::io_signature::make(1, 1, sizeof(gr_complex))) { } --- Jim Melton From: Jim Melton Sent: Wednesday, September 15, 2021 14:57 To: 'Jeff Long' Cc: GNURadio Discussion List Subject: RE: [EXTERNAL] Re: Why does this dump core? Simpler example. This still dum

RE: Re: Why does this dump core?

2021-09-15 Thread Jim Melton
re Return 0; } --- Jim Melton From: Jeff Long Sent: Tuesday, September 14, 2021 14:10 To: Jim Melton Cc: GNURadio Discussion List Subject: [EXTERNAL] Re: Why does this dump core? gr::CyberRadio::vita_udp_rx_impl::vita_udp_rx_impl() is calling gr::basic_block::message_port_register_out()

Why does this dump core?

2021-09-14 Thread Jim Melton
work. It clearly does not. I would appreciate any pointers on how to get past this roadblock. --- Jim Melton CONFIDENTIALITY NOTICE - SNC EMAIL: This email and any attachments are confidential, may contain proprietary, protected, or export controlled information, and are intended for the use of t

RE: Re: file_sink and performance monitoring

2021-08-31 Thread Jim Melton
? I’m running on a very capable box with lots of spare CPU cycles/cores. Does 0% make sense in this case? Are there other methods I can/should call to get deeper into the buffer usage (like absolute number of items in the buffer)? --- Jim Melton Principal Software Engineer Sierra Nevada

file_sink and performance monitoring

2021-08-31 Thread Jim Melton
>pc_output_buffers_full_avg(0) << "%" << "\noutput 0 var: " << item->pc_output_buffers_full_var(0) << "%" ; } } My output always prints 0 for each of these numbers. Do these methods w

QT GUI Sink "Clicked freq variable" does not work

2019-11-26 Thread Jim Larsen
Signal Source frequency and Label value does not change. This bug has been reported before. Has this problem been fixed in later versions of GNU Radio?Thanks,Jim N7IHQ foo.grc Description: Binary data https://lists.gnu.org/archive/html/discuss-gnuradio/2015-09/msg00576.html

[Discuss-gnuradio] USB relay control

2018-12-20 Thread Jim White
nd others.  It uses the FIDI chip set. Any advice is very much appreciated. Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Eye Pattern visualization & Doppler-based perigee estimator

2018-12-05 Thread Jim White
ined to implement this function. Perhaps with this explanation something might be found that will work. Thanks again, Jim On 12/5/2018 4:41 AM, Müller, Marcus (CEL) wrote: Hey Jim, welcome to the community! A quick hint beforehand: When you change the subject line (as the mail you responded to sugg

Re: [Discuss-gnuradio] Discuss-gnuradio Digest, Vol 194, Issue 3

2018-12-04 Thread Jim White
ved TCA to TCAs from several sets of keps to match them up and determine which set of keps is the satellite we are working with. Jim On 12/4/2018 10:00 AM, discuss-gnuradio-requ...@gnu.org wrote: Send Discuss-gnuradio mailing list submissions to discuss-gnuradio@gnu.org To su

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-15 Thread Jim Larsen
works, does running `gr-perf- > monitorx`? Do you still get the same blank display, are there any > warnings/errors printed? Here is the terminal output from running gr-perf-monitorx: jim@vmware:~/gnuradio/prefix/perfmon$ gr-perf-monitorx vmware 46263 QPaintDevice: Cannot destroy paint de

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-07-03 Thread Jim Larsen
are 40161 > > (replacing 40161 with the port number from the output of the flow > graph) I got a Control Port Monitor window displaying the block list, functions, and values. However, when I reenable the CtrlPort Performance Monitor block, the Performance Monitor window graph is

Re: [Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-23 Thread Jim Larsen
Marcus, Thank you for your reply. > On Jun 23, 2018, at 4:00 AM, Müller, Marcus (CEL) wrote: > > Can you share the full console output of your flow graph? Here is the flow graph console output: jim@vmware:~/gnuradio/prefix/perform$ gnuradio-companion <<< Welcome to G

[Discuss-gnuradio] Need help with CtrlPort Performance Monitor

2018-06-22 Thread Jim Larsen
I want to use the CtrlPort Performance Monitor block to compare CPU usage of several demodulator alternatives. I built GNU Radio version 3.7.12 using PyBOMBS on Ubuntu 18.04. I added -DENABLE_PERFORMANCE_COUNTERS=ON to the gnuradio.lwr recipe. I installed networkx, matplotlib, and python-pygrap

[Discuss-gnuradio] Performance Monitor rpcmanager runtime error

2018-06-13 Thread Jim Larsen
I installed GNU Radio 3.7.11 on Ubuntu 18.04 from the Ubuntu repository. I added a CtrlPort Performance Monitor block to a simple Signal Source > Throttle > Null Sink flow graph to visualize block performance. When I run the flow graph, I get the following runtime error: python: /build/gnuradi

[Discuss-gnuradio] OS X Tutorial Problem fixed

2016-04-26 Thread jim Schimpf
. This re-targeted the "make install" to /opt/local which is the “port” OS X install location for gnuradio. Starting gnuradio-companion then had the tutorial block added just like it’s supposed to. Thank you for the help. —jim schimpf ___

[Discuss-gnuradio] OS X GnuRadio Tutorial question

2016-04-25 Thread jim Schimpf
ces file: /Users/jim/.gnuradio/grc.conf Block paths: /opt/local/share/gnuradio/grc/blocks /Users/jim/.grc_gnuradio --- Thank you for the help. Also I am using PyCharm as my Python IDE and found to use it on my install of GnuRadio I created a new

Re: [Discuss-gnuradio] gnuradio on OS X without X11

2015-02-19 Thread Jim Larsen
Thanks Kai! GNU Radio works perfectly on my MacBook. Jim -- View this message in context: http://gnuradio.4.n7.nabble.com/gnuradio-on-OS-X-without-X11-tp51733p52390.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss

Re: [Discuss-gnuradio] QT GUI on low resolution display

2014-11-11 Thread Jim Larsen
Thank you for your comments Tom. I can make the QT GUI Slider height smaller by changing the Python statement from: Qwt.QwtSlider(None, Qt.Qt.Horizontal, Qwt.QwtSlider.BottomScale, Qwt.QwtSlider.BgSlot) to: Qwt.QwtSlider(None, Qt.Qt.Horizontal, Qwt.QwtSlider.NoScale, Qwt.QwtSlider.BgSlot) That may

[Discuss-gnuradio] QT GUI on low resolution display

2014-11-07 Thread Jim Larsen
GUI FFT sink has a window size parameter. Regards, Jim -- View this message in context: http://gnuradio.4.n7.nabble.com/QT-GUI-on-low-resolution-display-tp51236.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss-gnuradio

Re: [Discuss-gnuradio] Controls for the WXGUI waterfall widget

2014-07-17 Thread jim
tting there).  Does anyone have a line of python code that would allow me to set the color mode? I looked in the source, but it wasn't clear to me what the actual call and arguments would be. Jim Have you tried the QTGUI waterfall sink? You have a number of color map options with that, includin

Re: [Discuss-gnuradio] Good example of AGC after RTL_SDR

2014-07-17 Thread jim
urements into a hardware gain setting? (remote, but had to ask)Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Good example of AGC after RTL_SDR

2014-07-17 Thread jim
t, and the community have been awesome! Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Controls for the WXGUI waterfall widget

2014-07-17 Thread jim
I currently use the WXGUI waterfall display for my application.It is called from -- "from gnuradio.wxgui import waterfallsink2'The best visual setting for the signal type I'm tracking is the RBG2 mode. However, the settings for the color mode are not called out in the resulting python code that my

Re: [Discuss-gnuradio] Squelch and the KSHT sounds ...

2014-07-14 Thread jim
nd after the mike is unkeyed. However, the squelch function I use in GnuRadio 3.7.1 doesn't seem to have a setting which affects how quickly the squelch gate closes (its instantaneous). There is an Alpha and a Ramp function, but they don't seem to affect the result (wouldn't ex

[Discuss-gnuradio] Removing gnuradio 3.6 and reinstalling 3.7 with build-gnu radio

2014-07-14 Thread Jim Moudy
like to remove everything and do a clean install with Mr Leech's build-gnuradio. (Thank you, good script! Everyone should donate! ) Any suggestions for pulling out the old stuff? Do I just delete out the stuff in /use/local ? Seems dangerous? Jim ___

[Discuss-gnuradio] Squelch and the KSHT sounds ...

2014-07-12 Thread jim
hey don't seem to affect the result (wouldn't expect Alpha to).Does anyone have any insight into the code for this block? Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] WX GUI FFT sink on Raspberry Pi

2014-02-10 Thread Jim Larsen
Murat TA1DB wrote > Hi Jim, > ... > However my favorite modules Sinks (osmocom Sink) and Sources (osmoscom > Source, RTL_SDR Source) are missed. I also would like to install Gqrx; > Could > you please show me a similar safe way to add the missed modules and gqrx ? > ... >

[Discuss-gnuradio] QT GUI Frequency Sink CPU usage

2014-02-09 Thread Jim Larsen
Sink CPU usage python: 43% xorg: 58% QT GUI Sink CPU usage python: 5% xorg: 9% Could this be a bug? Regards, Jim Larsen -- View this message in context: http://gnuradio.4.n7.nabble.com/QT-GUI-Frequency-Sink-CPU-usage-tp46251.html Sent from the GnuRadio mailing list archive at Nabble.com

Re: [Discuss-gnuradio] WX GUI FFT sink on Raspberry Pi

2014-02-07 Thread Jim Larsen
-get install gnuradio 73, Jim N7IHQ -- View this message in context: http://gnuradio.4.n7.nabble.com/WX-GUI-FFT-sink-on-Raspberry-Pi-tp46197p46213.html Sent from the GnuRadio mailing list archive at Nabble.com. ___ Discuss-gnuradio mailing list

[Discuss-gnuradio] WX GUI FFT sink on Raspberry Pi

2014-02-06 Thread Jim Larsen
window shows the controls but the FFT display is blank. Does anyone know a fix for this? The same flowgraph works fine with GNU Radio version 3.7.0 on my MacBook running Ubuntu 13.10. Regards, Jim Larsen -- View this message in context: http://gnuradio.4.n7.nabble.com/WX-GUI-FFT-sink-on

Re: [Discuss-gnuradio] Need an "indicator" on the GUI display

2014-01-25 Thread jim
Thanks for the tip. I tried it... but the numbers and peak/average buttons will introduce complexity instead of simplifying the interface. I did learn about the number sink. Thank you for the tip. Maybe I'll try to disassemble the number sink to make a light.Jim Original Message

[Discuss-gnuradio] Need an "indicator" on the GUI display

2014-01-25 Thread jim
I've written an application for my client. The application works great (monitoring multiple channels for radio traffic and recording the demod FM stream). The client would like to see a couple of lights that show activity on the channel rather than a FFT GUI plot, which I like. Does anyone know of

[Discuss-gnuradio] PN code used in gr_pn_correlator_cc

2011-07-19 Thread Jim Simpson
he PN correlator block uses? Thanks, Jim PS I did go through all the sample grc or python code in the digital folder and didn't find any that uses the gr_pn_correlator. If you know of any, can you point me to it? Thanks. ___ Discuss-gnuradio mailing li

Re: [Discuss-gnuradio] "Failed to automatically set up a USRP device" !

2011-07-15 Thread Jim Simpson
of inconsistencies with UHD_003.001.002 Do you know if there is an updated version of that? Was Andrew's code ever published to git? Thanks! Jim On Thu, Jul 14, 2011 at 7:54 PM, Josh Blum wrote: > > > On 07/14/2011 02:24 PM, saketh kumar wrote: > > Hi > > >

Re: [Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
Cool- thanks for all your help. Jim On Wed, Jul 13, 2011 at 11:02 PM, Marcus D. Leech wrote: > On 07/13/2011 09:11 PM, Jim Simpson wrote: > >> It's working now. The fw upgrade fixed it. Thanks for the help! >> >> Thanks for the dmesg tip as well. >> >&

Re: [Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
ubuntu. Not sure what sda2 is. But this explains why it showed up on the gui. The SD card was sdb and it showed up fine on the burner gui on the new card reader. Thanks, Jim On Wed, Jul 13, 2011 at 6:03 PM, Josh Blum wrote: > > > On 07/13/2011 02:51 PM, Jim Simpson wrote: > > Tha

Re: [Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
It's working now. The fw upgrade fixed it. Thanks for the help! Thanks for the dmesg tip as well. Is there anything I can follow to get updates when there are new firmware releases? Thanks, Jim On Wed, Jul 13, 2011 at 6:03 PM, Marcus D. Leech wrote: > On 07/13/2011 05:51 PM, Jim

Re: [Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
Actually, I'm thinking that I might need to find another SD card reader. Looks like I could use the --list option in the non-GUI version to filter to small size drives. Right now I don't even see the card in Disk Utility. Thanks, Jim On Wed, Jul 13, 2011 at 5:51 PM, Jim Simp

Re: [Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
Thanks. That makes sense. When I call usrp2_card_burner_gui.py it only finds one device "/dev/sda2" I'm pretty sure that that is where windows resides. Is there any way to force the GUI to find the SD card? Is there any way to confirm that what it finds is the SD card? Thanks!

[Discuss-gnuradio] Yet another uhd_find_devices does not find usrp2 and no ping from 192.168.10.2

2011-07-13 Thread Jim Simpson
vices found as well. Any ideas? Thanks, Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] UDP broadcasting

2011-06-30 Thread Jim Stys
Hi, I'm trying to get a basic IP-based network running between 2 or 3 USRPs and I'm having trouble trying to send broadcast UDP packets via dial_tone_sink.py in the network examples. I'm sending the packets addressed to 192.168.200.255 with port 0 but this continuously results in a "can't open soc

Re: [Discuss-gnuradio] Is gnuradio.org down?

2011-06-24 Thread Jim Simpson
Thanks! Jim On Tue, Jun 21, 2011 at 5:29 PM, Johnathan Corgan < jcor...@corganenterprises.com> wrote: > On Tue, Jun 21, 2011 at 14:05, Jim Simpson wrote: > > >> Hi is gnuradio.org down? >> > > It seems to be a DNS issue, sometimes it resolves, sometimes it doe

[Discuss-gnuradio] Is gnuradio.org down?

2011-06-21 Thread Jim Simpson
Hi is gnuradio.org down? Can someone hit restart? Thanks, Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Suggested reading order

2010-08-15 Thread Jim
had studied DSP previously, so it may not be as easy for a complete beginner. Hope this helps. Kunal On Sat, Aug 14, 2010 at 10:02 PM, Jim wrote: Hi, Tom: Thank you for the suggestion, I'll give it a try. Thanks Jim Tom Rondeau wrote: On Wed, Aug 11, 2010 at 10:52 AM, Jim wrote: Hi

Re: [Discuss-gnuradio] Suggested reading order

2010-08-14 Thread Jim
Hi, Tom: Thank you for the suggestion, I'll give it a try. Thanks Jim Tom Rondeau wrote: On Wed, Aug 11, 2010 at 10:52 AM, Jim wrote: Hi,: I'm a newbie to GNURadio/USRP, I have checked the suggested reading at http://gnuradio.org/redmine/wiki/gnuradio/SuggestedReading, but ther

[Discuss-gnuradio] Suggested reading order

2010-08-11 Thread Jim
development, so Programming/C++/Python should be no problem, but I know very little about hardware/radio/communication/dsp. Thanks Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] need a small application!

2010-06-03 Thread Jim V
Hi Raveh, I advise you to check first the tutorial: http://gnuradio.org/redmine/wiki/gnuradio/TutorialsWritePythonApplications Then there are plenty of examples in gnuradio/gnuradio-examples. raveh_plus wrote: > > hello, > > I'm a beginner in GNU Radio, and I need to a small application t

Re: [Discuss-gnuradio] About tunnel.py

2010-05-26 Thread Jim V
Hello Juan, according to the FAQ ( http://gnuradio.org/redmine/wiki/1/UsrpFAQGen http://gnuradio.org/redmine/wiki/1/UsrpFAQGen ): "u" = USRP "a" = audio (sound card) "O" = overrun (PC not keeping up with received data from usrp or audio card) "U" = underrun (PC not providing data

[Discuss-gnuradio] USRP1 Simulatenous Receive and Transmit

2010-05-26 Thread Jim V
Hi everyone, is it feasible to transmit and receive simultaneously having one USRP1 with 2 daughtercards (2 RFX) (for example in Side A receiving and in Side B transmitting)? Is there any example in GnuRadio? Thank you in advance -- View this message in context: http://old.nabble.com/USRP1-Sim

RE: [Discuss-gnuradio] USRP 2 Daughter Cards

2009-02-19 Thread jim graham
Eric, rx_daughterboard_id() returns id 0x0034 for the RFX 1800 daughtercard? For the comment on the RFX boards; does this mean we are unable to use the dbs daughtercard on the USRP 2 unit? -- thanks jim == Jim Graham Black River Systems Company, Inc. 162 Genesee

[Discuss-gnuradio] USRP 2 Daughter Cards

2009-02-19 Thread jim graham
output levels). If I try the lfrx or dbs daughter cards the set_center_freq response appears incorrect. The baseband frequency is 0 and the ddc frequency is the negative of the commanded frequency. Any suggestions? == Jim Graham Black River Systems Company

Re: [Discuss-gnuradio] gr-msdd6000/src/run_tests

2008-10-10 Thread Jim Watson
On Fri, 2008-10-10 at 20:17 +1100, Jim Watson wrote: > On Fri, 2008-10-10 at 10:47 +0200, Dimitris Symeonidis wrote: > > checking for a sed that does not truncate output... ./configure: line > > 6695: echo: write error: Broken pipe > > /bin/sed > > Error not seen here

Re: [Discuss-gnuradio] gr-msdd6000/src/run_tests

2008-10-10 Thread Jim Watson
/bin/grep -F > i'm on ubuntu intrepid beta, sed is 4.1.5-8 > me too [EMAIL PROTECTED]:~/gnuradio$ dpkg -s sed | grep 4.1.5 Version: 4.1.5-8 [EMAIL PROTECTED]:~/gnuradio$ svn up At revision 9766. jim ___ Discuss-gnuradio mailing l

Re: [Discuss-gnuradio] powerline PHYs?

2008-10-02 Thread Jim Watson
O? > > Dave > There is a link in the gnuradio archives http://lists.gnu.org/archive/html/discuss-gnuradio/2008-08/msg00280.html ... but I am not sure this should be encouraged. jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

Re: [Discuss-gnuradio] GNU Radio eye candy

2008-09-29 Thread Jim Watson
$ grc This can be a good learning tool too, for example: signal source --> filter -> scope sink. http://gnuradio.org/trac/wiki/GNURadioCompanion jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/list

Re: [Discuss-gnuradio] one question about gr_packed_to_unpacked_bb.cc

2008-09-17 Thread Jim Watson
ill be over written jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Spam?]Re: [Discuss-gnuradio] GNU-Radio GUI applications freeze

2008-09-08 Thread Jim Watson
On Mon, 2008-09-08 at 07:24 -0700, Johnathan Corgan wrote: > On Mon, Sep 8, 2008 at 1:26 AM, Jim Watson <[EMAIL PROTECTED]> wrote: > > > I can reproduce something similar I think on Ubuntu 8.04 using recent > > svn sources with the included grc to make an audio signal s

Re: [Discuss-gnuradio] GNU-Radio GUI applications freeze

2008-09-08 Thread Jim Watson
I can reproduce something similar I think on Ubuntu 8.04 using recent svn sources with the included grc to make an audio signal source and scope sink, not using any usrp etc. The scope gui displays the waveform but the mouse cannot get focus on any buttons. Then I installed the latest stable r

[Discuss-gnuradio] some Wiki updates

2008-09-04 Thread Jim Watson
http://www.bdti.com/faq/ but cannot be sure as I never saw the previous... The following I have found to be remarkably clear for a novice, so I suggest it be considered for the DSP readings links. http://www.bores.com/courses/intro/index.htm thanks jim ___

Re: [Discuss-gnuradio] Errors in build gnuradio-3.1.2

2008-09-01 Thread Jim Watson
I find or download them? The package names vary across distributions, so "requires package jack" is only a hint. On Ubuntu 8.04 try libjack-dev. There should be similar configure messages for gr-wxgui and gr-utils, and some good clues

Re: [Discuss-gnuradio] Help compiling new block

2008-08-22 Thread Jim Watson
break something. What happens if you re-do everything from the start as a normal user? jim src/lib/Makefile.am:56: Python sources seen but `PYTHON' is undefined ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/ma

Re: [Discuss-gnuradio] minimizing interference with usrp

2008-02-12 Thread Jim Morash
radiated noise). B&B Electronics has them: http://www.bb-elec.com/product_family.asp?FamilyId=148 If you do get one, make sure it supports USB 2.0 ... many do not. --Jim Morash ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu

Re: [Discuss-gnuradio] Acoustics instead of radio & what's possible inreal-time?

2007-12-09 Thread Jim Morash
Jim Morash wrote: How many MFLOPS does your DSP solution currently require? You mention a floating-point DSP; is it the Texas Inst C6713? If so is it running 300 MHz / 1200 MFLOPS? Yes, that's right. I do fear we are using it rather inefficiently, though. To clarify: we are runnin

Re: [Discuss-gnuradio] Acoustics instead of radio & what's possible inreal-time?

2007-12-09 Thread Jim Morash
How many MFLOPS does your DSP solution currently require? You mention a floating-point DSP; is it the Texas Inst C6713? If so is it running 300 MHz / 1200 MFLOPS? Yes, that's right. I do fear we are using it rather inefficiently, though. ___ Dis

[Discuss-gnuradio] Acoustics instead of radio & what's possible in real-time?

2007-12-09 Thread Jim Morash
1 (for size/power reasons); it seems fairly fast and has a nice built in audio codec with a high sampling rate. http://www.engadget.com/2007/06/03/via-epia-px1-pico-itx-motherboard-gets-reviewed/ I am fairly new to software-defined radio in general. Thanks in advance for any suggestio

Re: [Discuss-gnuradio] the best file system for reading fast

2007-09-04 Thread Jim Perkins
partition will hold 26 minutes of continuous data. This is obviously a "purist" approach but doing it this way you will have a RELIABLE recording setup. -Jim Vincenzo Pellegrini wrote: Hi all, today I bought a 7200 rpm SATA HD (a seagate barracuda, as Eric suggested some months

[Discuss-gnuradio] Looking for recommendations on USB2.0 PCI cards

2007-04-27 Thread Jim Perkins
cards. -Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] What is the typical max USB transfer rate from the URSP?

2007-04-26 Thread Jim Perkins
Unfortunately the motherboard does not have USB2.0 built in. Why do the add-in cards have a speed issue? -Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] What is the typical max USB transfer rate from the URSP?

2007-04-26 Thread Jim Perkins
et is on the USB2.0 card but I do remember that I choose it specifically because it had good Linux support. NEC maybe?? Thanks, Jim ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] PCR-100 as a frontend ?

2007-02-12 Thread Jim Perkins
I just bought one of these as well. Right now there is a guy on eBay selling a load of them (with no accessories) for $50 each plus $5 shipping. Here is the only mod info that I've found on the 10.7 MHz IF: The buffered 10.7 MHz IF Output is available at the emitter of transistor of Q85. Q8

Re: [Discuss-gnuradio] Hard Disk Bottleneck

2007-02-11 Thread Jim Perkins
going to be fast enough you can use dd with /dev/zero or /dev/null to test sequentially read and write speed. You can vary the read/write size in dd to figure out the optimal read or write size. -Jim ___ Discuss-gnuradio mailing list Discuss

Re: [Discuss-gnuradio] ( An attempt ) to run GNURadio on WinTV : )

2007-01-27 Thread Jim Perkins
and what was the center frequency? Where did you inject the tone? -Jim Hew How Chee wrote: Hi Jim, The card I use last time is PV-TV304P+ (REV .2B) with FMRC (FM and Remote Control) . The chipset used is CX23881. The card from newegg.com is using CX23883. Can't tell it is compatible o

  1   2   >