All public logs
Jump to navigation
Jump to search
Combined display of all available logs of GNU Radio. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:19, 22 October 2024 User account Flyz talk contribs was created by 777arc talk contribs and password was sent by email
- 02:37, 19 October 2024 User account Calebm talk contribs was created by 777arc talk contribs and password was sent by email
- 17:55, 18 October 2024 User account Calm talk contribs was created by 777arc talk contribs and password was sent by email
- 17:05, 14 October 2024 User account Vsrks talk contribs was created by 777arc talk contribs and password was sent by email
- 11:15, 4 October 2024 Mdoallo talk contribs created page User:Mdoallo (Created page with "Full time Professor at Electrical Engineering Department of Universidad Tecnológica Nacional Buenos Aires, Argentina IEEE Senior Member since 2011 Ham Radio license LW1EFZ I love GNU Radio :-)")
- 16:14, 2 October 2024 User account Mdoallo talk contribs was created by 777arc talk contribs and password was sent by email
- 03:48, 2 October 2024 User account Rajib.das talk contribs was created by 777arc talk contribs and password was sent by email
- 02:31, 30 September 2024 User account Andruha talk contribs was created by 777arc talk contribs and password was sent by email
- 00:07, 23 September 2024 User account Adi 2002 talk contribs was created by 777arc talk contribs and password was sent by email
- 21:06, 21 September 2024 User account Nithyakarthiga R talk contribs was created by 777arc talk contribs and password was sent by email
- 21:06, 21 September 2024 User account Nithyakarthiga talk contribs was created by 777arc talk contribs and password was sent by email
- 21:57, 11 September 2024 User account Nsu54841 talk contribs was created by 777arc talk contribs and password was sent by email
- 17:59, 11 September 2024 User account UPEagleEye talk contribs was created by 777arc talk contribs and password was sent by email
- 07:28, 10 September 2024 Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png
- 09:45, 9 September 2024 Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png
- 09:42, 9 September 2024 Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png
- 08:44, 4 September 2024 AsriFox talk contribs created page File:Vscode python interpreters.png (Selecting a Python interpreter in VSCode Python extension)
- 08:44, 4 September 2024 AsriFox talk contribs uploaded File:Vscode python interpreters.png (Selecting a Python interpreter in VSCode Python extension)
- 08:44, 4 September 2024 AsriFox talk contribs created page File:Vscode module tree.png (Module Explorer view in VSCode GNURadio Integration extension)
- 08:44, 4 September 2024 AsriFox talk contribs uploaded File:Vscode module tree.png (Module Explorer view in VSCode GNURadio Integration extension)
- 10:07, 26 August 2024 Destevez talk contribs created page GR4 tutorial: tags (Created page with "This tutorial explains how to use tags in GNU Radio 4.0 blocks. There are the following main differences regarding tags in GNU Radio 4.0, compared to GNU Radio 3.10: * A GNU Radio 4.0 tag has a relative <code>index</code> and a <code>map</code> which is a <code>gr::property_map = std::map<std::string, pmtv::pmt></code>. This means that a single tag can hold multiple pieces of data, each with a different key in the <code>std::map</code>. In comparison, a GNU Radio 4.0 ta...")
- 08:46, 26 August 2024 Destevez talk contribs created page GR4 tutorial: blocks 101 (Created page with "== Structure of a block == A good example to show how a GNU Radio 4.0 block is structured is the Head block. This block has an input and an output, and only lets the first <code>num_items</code> input items make it through to the output. The code for the block is shown below, without the required <code>#include</code>s. Typically the code for the block will be placed in a <code>.hpp</code> file with include guards and at least <code><gnuradio-4.0/Block.hpp></code> a...")
- 09:19, 23 August 2024 Destevez talk contribs created page GR4 tutorial: flowgraphs 101 (Created page with "This tutorial explains the basics of C++ flowgraphs in GNU Radio 4.0. == Minimal flowgraph == The following is an example of a minimal flowgraph. It connects a Null Source to a Null Sink and runs the flowgraph forever. The code for the flowgraph can be found in [https://github.com/daniestevez/gr4-packet-modem/blob/main/examples/minimal_flowgraph.cpp minimal_flowgraph.cpp]. <syntaxhighlight lang="cpp" line> #include <fmt/core.h> #include <gnuradio-4.0/Graph.hpp> #inclu...")
- 08:59, 23 August 2024 Destevez talk contribs created page GR4 tutorials (Created page with "This page contains tutorials that explain how to get started developing blocks and flowgraphs in [https://github.com/fair-acc/gnuradio4/ GNU Radio 4.0]. The tutorials assume familiarity with GNU Radio 3.10 development, since they often draw similarities and differences between GNU Radio 3.10 and 4.0, but perhaps they can also be read without a background in GNU Radio 3.10. # GR4 tutorial: flowgraphs 101")
- 09:57, 22 August 2024 Destevez talk contribs created page Gr4-packet-modem complete flowgraph (Created page with "This page describes the operation of a complete flowgraph that uses gr4-packet-modem and TUN Source/Sink blocks for IP communications. The Packet Transmitter and Packet Receiver blocks in this flowgraph are described in their respective pages gr4-packet-modem transmitter and gr4-packet-modem receiver. A flowgraph similar to this is used in each of the [https://github.com/daniestevez/gr4-packet-modem/tree/main/apps applications included in gr4-packet-modem]....")
- 09:38, 22 August 2024 Destevez talk contribs created page File:Gr4 packet modem.png (gr4-packet-modem complete flowgraph)
- 09:38, 22 August 2024 Destevez talk contribs uploaded File:Gr4 packet modem.png (gr4-packet-modem complete flowgraph)
- 07:53, 22 August 2024 Destevez talk contribs created page Gr4-packet-modem receiver (Created page with "This page describes the operation of the gr4-packet-modem receiver. The [https://github.com/daniestevez/gr4-packet-modem/blob/main/blocks/include/gnuradio-4.0/packet-modem/packet_receiver.hpp packet receiver] is implemented as a class that adds and connects multiple blocks to an existing <code>gr::Graph</code>. This is done like so because at the moment hierarchical flowgraphs are not supported in GNU Radio 4.0. == Flowgraph == The flowgraph of the packet receiver...")
- 07:25, 22 August 2024 Destevez talk contribs created page File:Gr4 packet modem receiver.png (gr4-packet-modem receiver)
- 07:25, 22 August 2024 Destevez talk contribs uploaded File:Gr4 packet modem receiver.png (gr4-packet-modem receiver)
- 20:15, 21 August 2024 Bigwillis234 talk contribs created page File:FifthOrderGoldGeneratorOutput.png (Output from Fifth Order Gold Code Generator)
- 20:15, 21 August 2024 Bigwillis234 talk contribs uploaded File:FifthOrderGoldGeneratorOutput.png (Output from Fifth Order Gold Code Generator)
- 20:15, 21 August 2024 Bigwillis234 talk contribs created page File:FifthOrderGoldGenerator.png (Fifth Order Gold Code Generator)
- 20:15, 21 August 2024 Bigwillis234 talk contribs uploaded File:FifthOrderGoldGenerator.png (Fifth Order Gold Code Generator)
- 20:00, 21 August 2024 Bigwillis234 talk contribs created page File:FifthOrder.png (Fifth order LFSR bank with feedback p(x) = (5,2,0))
- 20:00, 21 August 2024 Bigwillis234 talk contribs uploaded File:FifthOrder.png (Fifth order LFSR bank with feedback p(x) = (5,2,0))
- 17:31, 21 August 2024 User account Bigwillis234 talk contribs was created by 777arc talk contribs and password was sent by email
- 11:02, 21 August 2024 Destevez talk contribs created page Gr4-packet-modem transmitter (Created page with "This page describes the operation of the gr4-packet-modem packet transmitter. The packet transmitter is implemented as a class that adds and connects multiple blocks to an existing <code>gr::Graph</code>. This is done like so because at the moment hierarchical flowgraphs are not supported in GNU Radio 4.0. There are two variants of the packet transmitter: * [https://github.com/daniestevez/gr4-packet-modem/blob/main/blocks/include/gnuradio-4.0/packet-modem/packe...")
- 10:14, 21 August 2024 Destevez talk contribs created page File:Gr4 packet modem transmitter.png (gr4-packet-modem packet transmitter flowgraph)
- 10:14, 21 August 2024 Destevez talk contribs uploaded File:Gr4 packet modem transmitter.png (gr4-packet-modem packet transmitter flowgraph)
- 09:24, 21 August 2024 Destevez talk contribs created page File:Gr4 packet modem fer peg codes.png (FER versus Eb/N0 for PEG (128, 32) LDPC codes with wc = 3)
- 09:24, 21 August 2024 Destevez talk contribs uploaded File:Gr4 packet modem fer peg codes.png (FER versus Eb/N0 for PEG (128, 32) LDPC codes with wc = 3)
- 08:43, 21 August 2024 Destevez talk contribs created page Gr4-packet-modem waveform design (Created page with "This page documents all the aspects of the waveform used by gr4-packet-modem. == Modulation == The modulation is a single-carrier RRC (root-raised-cosine) filtered PAM (pulse amplitude modulation) waveform. The RRC filter has a roll-off of 0.35. The following constellations are defined. There are provisions in the modem to use higher-order constellations for the payload data. * BPSK. Formed by the points 1, -1, which encode the bits 0 and 1 respectively. This is...")
- 08:17, 21 August 2024 Destevez talk contribs created page Gr4-packet-modem (Created page with "[https://github.com/daniestevez/gr4-packet-modem gr4-packet-modem] is a packet-based modem that runs on GNU Radio 4.0. It was implemented as an example of a complete digital communications system in GNU Radio 4.0. gr4-packet-modem can be used to test the GNU Radio 4.0 runtime in a realistic use case, and as an example of how to write blocks and applications in GNU Radio 4.0. The modem implements a generic protocol rather than an existing real world protocol, but it c...")
- 16:53, 14 August 2024 Duggabe talk contribs uploaded a new version of File:A V diagram 24.png
- 09:44, 12 August 2024 User account Twan talk contribs was created by 777arc talk contribs and password was sent by email
- 17:46, 1 August 2024 Duggabe talk contribs created page File:Fec coder payload fg.png
- 17:46, 1 August 2024 Duggabe talk contribs uploaded File:Fec coder payload fg.png
- 17:39, 26 July 2024 User account Chrisgorman talk contribs was created by 777arc talk contribs and password was sent by email
- 01:12, 17 July 2024 Duggabe talk contribs uploaded a new version of File:Pkt fsk xmt fg.png