diff options
author | Josh Blum | 2013-03-17 23:12:31 -0700 |
---|---|---|
committer | Josh Blum | 2013-03-17 23:12:31 -0700 |
commit | bfefd11011987fe9755dd72d86ad4f052b3d263e (patch) | |
tree | 73b3960d46caed9996dfeff4856c3bcc546c9006 /gr-utils/src/python/modtool/README.modtool | |
parent | cb5ff01c491d4558a096fc1649b85283c36ccf91 (diff) | |
parent | 3693ee3259fa8bf2d9ad393842a80cd1fc330863 (diff) | |
download | gnuradio-bfefd11011987fe9755dd72d86ad4f052b3d263e.tar.gz gnuradio-bfefd11011987fe9755dd72d86ad4f052b3d263e.tar.bz2 gnuradio-bfefd11011987fe9755dd72d86ad4f052b3d263e.zip |
Merge branch 'maint' of https://github.com/guruofquality/gnuradio into v3.6.4git_gras_support
Conflicts:
gnuradio-core/src/lib/runtime/gr_block.cc
gnuradio-core/src/lib/runtime/gr_block.h
gnuradio-core/src/lib/runtime/gr_types.h
Diffstat (limited to 'gr-utils/src/python/modtool/README.modtool')
-rw-r--r-- | gr-utils/src/python/modtool/README.modtool | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gr-utils/src/python/modtool/README.modtool b/gr-utils/src/python/modtool/README.modtool new file mode 100644 index 000000000..84c2e66c1 --- /dev/null +++ b/gr-utils/src/python/modtool/README.modtool @@ -0,0 +1,19 @@ +gr_modtool: Swiss Army Knife for editing GNU Radio modules and -components. + +Adding a new subcommand +======================= + +* Add a new file called modtool_SUBCOMMAND +* Have a look at the other subcommands, it must inherit from ModTool +* Add that file to __init__.py and CMakeLists.txt + +The gr-newmod directory +======================= +This dir basically contains a copy of gr-howto-write-a-block from the gnuradio +sources, with some differences: +- All example blocks, apps, grc files (...) and references thereto in the + CMake files are removed +- In the top-level CMake file, the project is called 'gr-howto'. +- Any time anything relevant is changed in gr-howto-write-a-block, it should + be changed here, too. + |