diff options
author | manojgudi | 2014-03-15 23:45:04 +0530 |
---|---|---|
committer | manojgudi | 2014-03-15 23:45:04 +0530 |
commit | bfc36b3099ad66580aa5cb8019df70a49deba8ee (patch) | |
tree | 43e8e74aba69911c9e132c20bd6cf959fa465bab /code_devel.md | |
parent | 6afb5cb9474faa0449b2395c2bdc8a710647ee62 (diff) | |
download | sandhi-docs-bfc36b3099ad66580aa5cb8019df70a49deba8ee.tar.gz sandhi-docs-bfc36b3099ad66580aa5cb8019df70a49deba8ee.tar.bz2 sandhi-docs-bfc36b3099ad66580aa5cb8019df70a49deba8ee.zip |
finished scope.md
Diffstat (limited to 'code_devel.md')
-rw-r--r-- | code_devel.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code_devel.md b/code_devel.md index f743c5f..701a5e6 100644 --- a/code_devel.md +++ b/code_devel.md @@ -48,7 +48,7 @@ To integrate it, you need to 1. Copy your xml in _../gr-myblock/grc/_ and edit its import section to reflect integration changes. For example: _import myblock_ will become _from gnuradio.myblock import myblock as myblock_ 2. Modify it's CMakeLists.txt to reflect changes. 3. Similarly modify CMakeLists.txt in _../gr-myblock/python/_ and _../gr-myblock/doc/_ the one in _myblock/_ folder itself; add additional dependeny check if your block requires any. - 4. The top_level CMakeLists.txt in _gr36/_ folder should include this line _add_subdirectory(gr-myblock)_ + 4. The top_level CMakeLists.txt in _gr36/_ folder should include this line `_add_subdirectory(gr-myblock)_` ### Coding a Sci-block This section gives hints on how to use Sciscipy in Sandhi to develop blocks. There are two ways of calling Sciscipy from work_function in python. @@ -78,4 +78,4 @@ def my_sci_func(x, y): output_items[0][:2] = my_sci_func(1,2) ``` -we realize this is the not the best way to code, but _if it works, it works_
\ No newline at end of file +we realize this is the not the best way to code, but hey, _if it works, it works_
\ No newline at end of file |