GNUradio 3.8: ModuleNotFoundError: No module named 'myModulename'

2020-02-27 Thread Laura Arjona
ent call last): File "", line 1, in ModuleNotFoundError: No module named 'bcsi' >>> Any advice would be welcomed! Best -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fellow in Neuroengineering *Paul G. Allen School of Computer Science & Engineering* 185 E Stevens Way NE University of Washington Seattle, WA 98195-2350

Re: gnuradio 3.8 errors with gr_modtool

2020-02-26 Thread Laura Arjona
> This should clean the files that are causing issue. > > > > Josh > > > -- Forwarded message - > From: *Laura Arjona* > Date: Tue, Feb 25, 2020 at 5:25 PM > Subject: Re: gnuradio 3.8 errors with gr_modtool > To: Maitland Bottoms > Cc: GNURa

Re: gnuradio 3.8 errors with gr_modtool

2020-02-25 Thread Laura Arjona
just in case, I removed the only .pyc file I found under /usr/share/gnuradio/modtool/templates/gr-newmod/python/__pycache /usr/share/gnuradio/modtool/templates/gr-newmod/python/__pycache__$ sudo rm *pyc The same error occurs. Thank you! On Tue, Feb 25, 2020 at 2:17 PM Laura Arjona wrote

Re: gnuradio 3.8 errors with gr_modtool

2020-02-25 Thread Laura Arjona
Thank you Maitland. Is there a "safer" way of installing gnuradio 3.8? Matiland - there is not such a folder in /modtool/gr-newmod. I only have /usr/share/gnuradio/modtool/template On Tue, Feb 25, 2020 at 1:13 PM Maitland Bottoms wrote: > Laura Arjona writes: > > > 1 -

Re: gnuradio 3.8 errors with gr_modtool

2020-02-25 Thread Laura Arjona
appreciate it, thanks! On Fri, Feb 21, 2020 at 4:22 PM Maitland Bottoms wrote: > On Fri, 21 Feb 2020 10:58:18 -0800 > Laura Arjona wrote: > > > UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe8 in position > > 5: invalid continuation byte > > The pro

gnuradio 3.8 errors with gr_modtool

2020-02-21 Thread Laura Arjona
File "/usr/lib/python3/dist-packages/gnuradio/modtool/core/add.py", line 141, in run self._run_lib() File "/usr/lib/python3/dist-packages/gnuradio/modtool/core/add.py", line 195, in _run_lib self._write_tpl('block_def_h',self.info['includedir&#x

Re: Version compatibility problem

2020-02-12 Thread Laura Arjona
sorry, typed it wrong ~$ which gnradio-config-info /usr/local/bin/gnuradio-config-info On Wed, Feb 12, 2020 at 3:03 PM Laura Arjona wrote: > Thank you Marcus. > > I think I am going to install ubuntu again, since I really need to have > gnuradio working asap. > > It says

Re: Version compatibility problem

2020-02-12 Thread Laura Arjona
han one installation in the prefix?! > what does `which gnuradio-config-info` say? > > > On Wed, 2020-02-12 at 13:52 -0800, Laura Arjona wrote: > > Thank you, > > > > I got rid of all the folders named gnuradio, and it seems to be > > uninstalled, because when I

Re: Version compatibility problem

2020-02-12 Thread Laura Arjona
access to GNU Radio 3.8.0.0 anymore. > > Best regards, > Marcus > > On Wed, 2020-02-12 at 12:12 -0800, Laura Arjona wrote: > > Good morning, > > > > In short, I installed gnuradio 3.8 following the tutorial in the github > site > > sudo -H pip3 install PyBOMBS

Version compatibility problem

2020-02-12 Thread Laura Arjona
-installed the version 3.7. But when I check the version with gnuradio-config-info --version I still get version 3.8.0. Because of the version I have other eros when building my oot-modules. Any advice there? Thanks! -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral

Re: Library for matrix operations? (eigenvalues, pseudoinverse)

2020-02-06 Thread Laura Arjona
On 06/02/2020 20.16, Laura Arjona wrote: > > Whenever I try to use the *pinv* function inside my OOT block, I get the > > error : *AttributeError: 'module' object has no attribute 'cca_update'* > > I just comment the line about the pinv, and no error appears.

Re: Library for matrix operations? (eigenvalues, pseudoinverse)

2020-02-06 Thread Laura Arjona
t have BLAS or a high-speed replacement for BLAS, such as OpenBLAS, GotoBLAS, Intel MKL, AMD ACML, or the Accelerate framework. BLAS is used for matrix multiplication. Without BLAS, matrix multiplication will still work, but might be slower. #endif On Fri, Jan 17, 2020 at 3:18 PM

Link not found for USRP FPGA manual

2020-02-05 Thread Laura Arjona
Hi community, I want to learn about programming the USRP2 FPGA. The link about the FPGA manual doesn't work http://files.ettus.com/manual/md_fpga.html Any help of where to find such manual? THanks! Laura. -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fell

Re: Library for matrix operations? (eigenvalues, pseudoinverse)

2020-01-17 Thread Laura Arjona
> Hi Laura, > > > > Just to add to the suggestions, I've seen Eigen [1] used in the past. > > It's a template library (headers only) and has no external > > dependencies other than the standard library and that might be > > something to consider given you

Library for matrix operations? (eigenvalues, pseudoinverse)

2020-01-16 Thread Laura Arjona
Hi all, Is there any library to use in gnuradio for algebra operations, such as matrix eigenvalues, and pseudoinverse? Or I'd need to code them myself in C++? I need to integrate those operations into my OOT C++ blocks. Thanks for your time Best -- *Laura Arjona * Washington Res

Re: Wrong values with IIR_Filter in my OOT-Module design

2020-01-08 Thread Laura Arjona
Forgot to say that I get the same values when I pass samples one by one from my OOT block to the filter (instead of passing them in vectors of 8 samples) On Wed, Jan 8, 2020 at 2:24 PM Laura Arjona wrote: > Hi community! First, thanks for dedicating time to help me > > I have a pro

Wrong values with IIR_Filter in my OOT-Module design

2020-01-08 Thread Laura Arjona
int written = 0; //Send 8 float values to the filter for (int i = 0; i<8; i ++){ out0[i] = my_vector[i]; written ++; } produce(0,written); consume_each (consumed); return WORK_CALLED_PRODUCE; } -- *Laura Arjona * Washington Research Foundation Inno

zero-phase iir_filter block?

2019-12-30 Thread Laura Arjona
Hi all, Is the zero phase- iir_filter block in gnuradio? I thought the iir_filter was zero-phase, but then I get different results with iir_filter(b,a,signal) and the matlab function filtfilt(b,a,x). Thanks and my best wishes for 2020. Best -- *Laura Arjona * Washington Research Foundation

Gnuradio for Android using AndroidStudio in Windows10

2019-11-11 Thread Laura Arjona
Good morning, Thank you for the tutorial about GnuRadio on Android GRAndWalkthrough. Looking at the configuration, it has been developed by AndroidStudio in Linux. Is it compatible for WIndows 10 by changing the directories/locations in the "GRLIBPATH" variable. Thank you. -- *Laura Arjona *

[Discuss-gnuradio] Problems switching project from USRP N210+SBX to an USRP B200-mini

2019-10-14 Thread Laura Arjona
quot;, 0) def __init__(self, myfreq): gr.top_block.__init__(self) self.dac_rate = 100e6/44 # DAC rate self.adc_rate = 100e6/44# ADC rate self.rx_gain = 300 self.tx_gain = 300 self.usrp_address_source = "serial=31861F8" self.usrp_address_sink = "se

Re: [Discuss-gnuradio] ImportError: cannot import name usrp

2019-10-14 Thread Laura Arjona
= usrp.selected_subdev(tx, tx_subdev) subdev.set_enable(True) subdev.set_gain(subdev.gain_range()[2]) t = tx.tune(subdev.which(), subdev, freq) On Fri, Oct 11, 2019 at 1:39 PM Nate Temple wrote: > Can you post the code in question? > > On Fri, Oct 11, 2019 at 1:32 PM Lau

Re: [Discuss-gnuradio] ImportError: cannot import name usrp

2019-10-11 Thread Laura Arjona
as below: > > sink = uhd.usrp_sink( > ",".join(("", "")), > uhd.stream_args( > cpu_format="fc32", > channels=range(1), > ), > ) > > On Fri, Oct 11, 2019 at 1:16 PM Laura Arjona wrot

Re: [Discuss-gnuradio] ImportError: cannot import name usrp

2019-10-11 Thread Laura Arjona
rce = uhd.usrp_source(...) > ... > > I would suggest to try building out a basic flowgraph in GRC and then use > the generate button and checkout the source made from it. > > > Regards, > Nate Temple > > > On Fri, Oct 11, 2019 at 1:06 PM Laura Arjona wrote: > >&g

Re: [Discuss-gnuradio] ImportError: cannot import name usrp

2019-10-11 Thread Laura Arjona
Sorry for not being clear, I actually have that from gnuradio import usrp ImportError: cannot import name usrp On Fri, Oct 11, 2019 at 1:08 PM Michael Dickens wrote: > Hi Laura - Try: "from gnuradio import uhd" ... not "import usrp" ... - MLD > > On Fri, Oct 11,

[Discuss-gnuradio] ImportError: cannot import name usrp

2019-10-11 Thread Laura Arjona
how to fix this? Thank you. -- *Laura Arjona * ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] [USRP N210] Timing Issues in GNURadio

2019-09-05 Thread Laura Arjona
lease let me know. > > P.S. I can also screen capture a video of the problem and show what's > happening if that's easier. > > Thanks, > Andrew Braun > > ___ > Discuss-gnuradio mailing list > Discuss-gnuradio@gnu.org > https

Re: [Discuss-gnuradio] Maximum input items consumed on each input stream

2019-08-30 Thread Laura Arjona
tween blocks. I'm not sure what the absolute maximum > is, but 16 Megabytes should cover most applications. > > The DVB-T2 blocks use set_output_multiple() in conjunction with > forecast() to allocate these large buffers. > > Ron > > On 8/28/19 11:46, Laura Arjona wrote: &

Re: [Discuss-gnuradio] Maximum input items consumed on each input stream

2019-08-29 Thread Laura Arjona
context dependent. Hope this is useful! - MLD > > On Wed, Aug 28, 2019 at 2:53 PM Laura Arjona wrote: > >> Hello GNURadio community, >> >> Does anyone know what is the maximum number of input items that an Out Of >> Tree block can consume on each input stream? >&

[Discuss-gnuradio] Maximum input items consumed on each input stream

2019-08-28 Thread Laura Arjona
Hello GNURadio community, Does anyone know what is the maximum number of input items that an Out Of Tree block can consume on each input stream? consume_each(consumed) --> what is the maximum value that the variable consumed can take? Thank you very much. -- *Laura Arjona * Washing

Re: [Discuss-gnuradio] Message passing: boost::bind() not executing

2019-08-20 Thread Laura Arjona
ork() somehow leads to the thing not being called. > Or maybe it's the forecast() method? > > Best regards, > Marcus > > On Mon, 2019-08-19 at 15:52 -0700, Laura Arjona wrote: > > > > Hi all, > > I would really appreciate some help with using message passing.

Re: [Discuss-gnuradio] OOT modules on Android

2019-03-25 Thread Laura Arjona
everely dated at this point, and almost certainly won't work as-is. > > https://wiki.gnuradio.org/index.php/Android > > Cheers, > Ben > > On Fri, Mar 22, 2019 at 12:36 PM Laura Arjona wrote: > >> I might have been thinking about this in the wrong way. >> >> The way to

Re: [Discuss-gnuradio] OOT modules on Android

2019-03-22 Thread Laura Arjona
I might have been thinking about this in the wrong way. The way to proceed would be to re-write the blocks in Android studio, using C++? (instead of importing the blocks created with gr-modtool) Thank you and good weeked! On Thu, Mar 21, 2019 at 7:44 PM Laura Arjona wrote: > Hi every

[Discuss-gnuradio] OOT modules on Android

2019-03-21 Thread Laura Arjona
Hi everyone, I want to build an Android App to communicate with an USRP B200-mini, and this app should use one OOT module with several oot blocks. How should I proceed to import my OOT module? Thank you ___ Discuss-gnuradio mailing list Discuss-gnurad

Re: [Discuss-gnuradio] Custom gnuradio GUI for OOT blocks

2019-03-11 Thread Laura Arjona
se them as Qt "SLOT"s, which means that you can connect an > event (e.g. a button click) to them in Python. > > So, you'd need no extra framework at all – GNU Radio and our python > wrappers and Qt do all this for you :) > > Best regards, > Marcus > > On Sun, 2019

[Discuss-gnuradio] Custom gnuradio GUI for OOT blocks

2019-03-10 Thread Laura Arjona
Hi, I have designed a gnu-radio system with different blocks (pre-defined and out-of-tree) to run on a USRP. I want to create a custom GUI, where the user can modify the behavior of the OOT blocks. I have developed the OOT blocks in C++. (it would be basically call functions of the c++ code using

[Discuss-gnuradio] Transmit BPSK symbols from OOT block using memcpy

2019-02-15 Thread Laura Arjona
mentation already, so any advice/guidance about the generation of the bit0 and bit1 symbols would be appreciated. Thanks! -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fellow in Neuroengineering *Paul G. Allen School of Computer Science & Engineering* 185 E

Re: [Discuss-gnuradio] OOT blocks not imported when using extern variables in C++

2018-10-20 Thread Laura Arjona
ed on the result of > one function of block3? > > https://www.gnuradio.org/doc/doxygen/page_msg_passing.html > > Cheers, > > Sylvain > -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fellow in Neuroengineering *Paul G. Allen Center for Computer S

Re: [Discuss-gnuradio] OOT blocks not imported when using extern variables in C++

2018-10-20 Thread Laura Arjona
<246...@gmail.com> wrote: > > How/where should I declare the global variables that can be read and > modified from the general blocks? > > You shouldn't. > > Cheers, > > Sylvain > -- *Laura Arjona * Washington Research Foundation Innovation Postdoct

[Discuss-gnuradio] OOT blocks not imported when using extern variables in C++

2018-10-19 Thread Laura Arjona
blocks can be imported. How/where should I declare the global variables that can be read and modified from the general blocks? Note: I use this global variables to trigger different actions in each block Thank you. -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fellow