Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Show my edits | Hide bots | Show minor edits
Show new changes starting from 23:04, 20 September 2024
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

11 September 2024

     21:57  (User creation log) [777arc‎ (2×)]
     
21:57 User account Nsu54841 talk contribs was created by 777arc talk contribs and password was sent by email ‎
     
17:59 User account UPEagleEye talk contribs was created by 777arc talk contribs and password was sent by email ‎

10 September 2024

     07:31  Gr4-packet-modem receiver‎‎ 2 changes history +303 [Destevez‎ (2×)]
     
07:31 (cur | prev) +303 Destevez talk contribs
     
06:49 (cur | prev) 0 Destevez talk contribs
     07:28 Upload log Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png

9 September 2024

     09:58  Gr4-packet-modem receiver‎‎ 2 changes history +2,111 [Destevez‎ (2×)]
     
09:58 (cur | prev) +2,104 Destevez talk contribs (→‎Flowgraph)
     
09:46 (cur | prev) +7 Destevez talk contribs
     09:45  (Upload log) [Destevez‎ (2×)]
     
09:45 Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png
     
09:42 Destevez talk contribs uploaded a new version of File:Gr4 packet modem receiver.png

4 September 2024

     09:10  GR4 tutorial: blocks 101 diffhist +1,460 Destevez talk contribs
     09:01  Tutorials diffhist −13 AsriFox talk contribs (UsingVSCode)
     08:59  UsingVSCode diffhist +7,626 AsriFox talk contribs (GNURadio Integration extension)
     08:44  (Upload log) [AsriFox‎ (2×)]
     
08:44 AsriFox talk contribs uploaded File:Vscode python interpreters.png(Selecting a Python interpreter in VSCode Python extension)
     
08:44 AsriFox talk contribs uploaded File:Vscode module tree.png(Module Explorer view in VSCode GNURadio Integration extension)

30 August 2024

     14:52  GNU Radio 4.0 diffhist +214 Destevez talk contribs

26 August 2024

N    10:22  GR4 tutorial: blocks 101‎‎ 8 changes history +15,320 [Destevez‎ (8×)]
     
10:22 (cur | prev) +17 Destevez talk contribs (→‎Vectors of ports)
     
10:20 (cur | prev) +2,571 Destevez talk contribs
     
09:41 (cur | prev) +9 Destevez talk contribs
     
09:21 (cur | prev) +65 Destevez talk contribs
     
09:20 (cur | prev) +5 Destevez talk contribs
     
09:17 (cur | prev) +1,277 Destevez talk contribs
     
09:10 (cur | prev) +2,556 Destevez talk contribs
N    
08:46 (cur | prev) +8,820 Destevez talk contribs (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...")
N    10:07  GR4 tutorial: tags diffhist +3,263 Destevez talk contribs (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...")
     09:42  GR4 tutorials‎‎ 2 changes history +58 [Destevez‎ (2×)]
     
09:42 (cur | prev) +26 Destevez talk contribs
     
07:44 (cur | prev) +32 Destevez talk contribs

23 August 2024

N    11:04  GR4 tutorial: flowgraphs 101‎‎ 9 changes history +12,227 [Destevez‎ (9×)]
     
11:04 (cur | prev) +270 Destevez talk contribs
     
11:02 (cur | prev) +4 Destevez talk contribs (→‎Connections to blocks with vectors of ports)
     
11:00 (cur | prev) +8 Destevez talk contribs (→‎Stopping a flowgraph)
     
10:59 (cur | prev) +8 Destevez talk contribs (→‎Block parameters)
     
10:59 (cur | prev) +10 Destevez talk contribs (→‎Stopping a flowgraph)
     
10:24 (cur | prev) +2,072 Destevez talk contribs
     
09:55 (cur | prev) +2,180 Destevez talk contribs
     
09:47 (cur | prev) +3,409 Destevez talk contribs
N    
09:19 (cur | prev) +4,266 Destevez talk contribs (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...")
N    08:59  GR4 tutorials diffhist +411 Destevez talk contribs (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")
     08:40  Gr4-packet-modem receiver‎‎ 13 changes history +8,014 [Destevez‎ (13×)]
     
08:40 (cur | prev) 0 Destevez talk contribs (→‎Syncword detection)
     
08:39 (cur | prev) +31 Destevez talk contribs (→‎Syncword detection)
     
08:35 (cur | prev) +96 Destevez talk contribs (→‎Syncword detection)
     
08:33 (cur | prev) +22 Destevez talk contribs (→‎Syncword detection)
     
08:31 (cur | prev) +20 Destevez talk contribs (→‎Syncword detection)
     
08:31 (cur | prev) +1 Destevez talk contribs (→‎Syncword detection)
     
08:30 (cur | prev) +37 Destevez talk contribs (→‎Syncword detection)
     
08:29 (cur | prev) −12 Destevez talk contribs (→‎Syncword detection)
     
08:27 (cur | prev) +41 Destevez talk contribs (→‎Syncword detection)
     
08:26 (cur | prev) +16 Destevez talk contribs (→‎Syncword detection)
     
08:25 (cur | prev) +89 Destevez talk contribs (→‎Syncword detection)
     
08:23 (cur | prev) +5,135 Destevez talk contribs (→‎Syncword detection)
     
07:42 (cur | prev) +2,538 Destevez talk contribs

22 August 2024

     10:51  Gr4-packet-modem diffhist +4 Destevez talk contribs