Re: How to run the program without showing the block diagram in windows 10?

2023-12-20 Thread Sreejith RK Nair
1.
>
>   The OOT could not be distributed in binary form if it is built
>   against GPLv3 modules without the artifact being licensed as GPLv3
>   2.
>
>   Realistically, this would limit non-GPL usage of GR4 OOTs in
>   flowgraphs to custom blocks that have been licensed accordingly
>   2.
>
>An application such as a graphical frontend linking to GR4 under the
>hood could be created under a non-GPL license
>
>
> Note: The above is not legal guidance to any users of this codebase, but a
> statement of a licensing change compared to previous GNU Radio revisions.
> Each user should consult counsel where needed to understand their own usage
>
> Links:
>
> https://github.com/fair-acc/graph-prototype
>
> https://events.gnuradio.org/event/21/contributions/390/
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> https://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20231219/ebe5d92c/attachment.htm
> >
>
> --
>
> Message: 3
> Date: Tue, 19 Dec 2023 15:34:44 -0500
> From: Jeff Long 
> To: GNURadio Discussion List 
> Subject: Re: Vector Sink/Source Type Support
> Message-ID:
>  d...@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> We don't seem to have any blocks in-tree that support either of these
> types, so it wouldn't be of general use and would be hard to test with CI.
> My opinion is that this is something to look into for GR4.0, unless there
> is some demand for more precision in 3.X.
>
> On Tue, Dec 19, 2023 at 2:57 PM David Reuss 
> wrote:
>
> > Hello,
> >
> > We have a few gnuradio blocks in an OOT module that require double
> > precision inputs and outputs. To help us test these blocks we created our
> > own vector sink/source blocks that are direct copies of the gnuradio
> vector
> > sink/source but with added support for doubles.
> >
> > This works well, but I was wondering if there is a reason that vector
> > sink/source don't support double, std::int64_t and gr_complexd types, or
> > whether this is something that might be useful for me to create a pull
> > request for? These blocks are already templated (source:
> >
> https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/vector_sink_impl.cc
> ),
> > so it should be easy enough to add support for more types.
> >
> > Thank you,
> > David
> >
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> https://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20231219/cbad1d5f/attachment.htm
> >
>
> --
>
> Message: 4
> Date: Wed, 20 Dec 2023 20:23:05 +0530
> From: Sreejith RK Nair 
> To: discuss-gnuradio@gnu.org
> Subject: How to run the program without showing the block diagram in
> windows 10?
> Message-ID:
> <
> cakfesxd-vjvmx01_dbpzyfhunxppovqawfvqdsf7zz5tkeb...@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> I have done a project for my internship using gnu radio. I want to run my
> project on another pc(windows 10) and show the output but not the block
> diagram .My invigilator should only see the output. Can anyone suggest a
> way to do this?
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> https://lists.gnu.org/archive/html/discuss-gnuradio/attachments/20231220/9ae9622d/attachment.htm
> >
>
> --
>
> Subject: Digest Footer
>
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
>
> --
>
> End of Discuss-gnuradio Digest, Vol 254, Issue 16
> *
>


Re: How to run the program without showing the block diagram in windows 10?

2023-12-20 Thread Jeff Long
GNU Radio Companion (GRC) writes out a Python script, then executes it.
That script should be in the same directory as the grc file. You can run
that Python script outside of GRC. Make sure GNU Radio is set up on the
target machine, and that paths are set up correctly. C++ output is similar,
but I'll assume you're talking about Python here.

On Wed, Dec 20, 2023 at 11:03 AM Sreejith RK Nair <
sreejithrknair...@gmail.com> wrote:

> I have done a project for my internship using gnu radio. I want to run my
> project on another pc(windows 10) and show the output but not the block
> diagram .My invigilator should only see the output. Can anyone suggest a
> way to do this?
>


How to run the program without showing the block diagram in windows 10?

2023-12-20 Thread Sreejith RK Nair
I have done a project for my internship using gnu radio. I want to run my
project on another pc(windows 10) and show the output but not the block
diagram .My invigilator should only see the output. Can anyone suggest a
way to do this?