Skip to content

Commit

Permalink
fix typo in file names
Browse files Browse the repository at this point in the history
  • Loading branch information
tapparelj committed Aug 22, 2023
1 parent 79fd2b9 commit 9b823ad
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ test:
{% endfor %}

# verify that examples get installed
{% set example_grcs = ["lora_RX", "lora_TX", "tx_rx_functionnality_check", "tx_rx_simulation", "tx_rx_usrp"] %}
{% set example_grcs = ["lora_RX", "lora_TX", "tx_rx_functionality_check", "tx_rx_simulation", "tx_rx_usrp"] %}
{% for eg in example_grcs %}
- grcc $PREFIX/share/gr-{{ oot_name }}/examples/{{ eg }}.grc # [not win]
- grcc %PREFIX%\\Library\\share\\gr-{{ oot_name}}\\examples\\{{ eg }}.grc # [win]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ The out of tree module gr-lora_sdr can be installed from source or directly as a
```sh
gnuradio-companion &
```
- A final verification of the transceiver functionning can be made by executing the following script, transmitting a frame every two seconds:
- A final verification of the transceiver functioning can be made by executing the following script, transmitting a frame every two seconds:
```sh
python3 examples/tx_rx_functionnality_check.py
python3 examples/tx_rx_functionality_check.py
```

#### Usage
Expand Down
4 changes: 2 additions & 2 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
install(
FILES lora_RX.grc
lora_TX.grc
tx_rx_functionnality_check.grc
tx_rx_hier_functionnality_check.grc
tx_rx_functionality_check.grc
tx_rx_hier_functionality_check.grc
tx_rx_simulation.grc
tx_rx_usrp.grc
DESTINATION ${GR_PKG_DATA_DIR}/examples)
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ options:
gen_linking: dynamic
generate_options: no_gui
hier_block_src_path: '.:'
id: tx_rx_functionnality_check
id: tx_rx_functionality_check
max_nouts: '0'
output_language: python
placement: (0,0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: GPL-3.0
#
# GNU Radio Python Flow Graph
# Title: Tx Rx Functionnality Check
# Title: Tx Rx Functionality Check
# Author: Tapparel Joachim@EPFL,TCL
# GNU Radio version: 3.10.5.1

Expand All @@ -25,10 +25,10 @@



class tx_rx_functionnality_check(gr.top_block):
class tx_rx_functionality_check(gr.top_block):

def __init__(self):
gr.top_block.__init__(self, "Tx Rx Functionnality Check", catch_exceptions=True)
gr.top_block.__init__(self, "Tx Rx Functionality Check", catch_exceptions=True)

##################################################
# Variables
Expand Down Expand Up @@ -205,7 +205,7 @@ def set_SNRdB(self, SNRdB):



def main(top_block_cls=tx_rx_functionnality_check, options=None):
def main(top_block_cls=tx_rx_functionality_check, options=None):
tb = top_block_cls()

def sig_handler(sig=None, frame=None):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ options:
gen_linking: dynamic
generate_options: no_gui
hier_block_src_path: '.:'
id: tx_rx_hier_functionnality_check
id: tx_rx_hier_functionality_check
max_nouts: '0'
output_language: python
placement: (0,0)
Expand Down Expand Up @@ -321,3 +321,4 @@ connections:

metadata:
file_format: 1
grc_version: 3.10.5.1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: GPL-3.0
#
# GNU Radio Python Flow Graph
# Title: Tx Rx Hier Functionnality Check
# Title: Tx Rx Hier Functionality Check
# Author: Tapparel Joachim@EPFL,TCL
# GNU Radio version: 3.10.5.1

Expand All @@ -25,10 +25,10 @@



class tx_rx_hier_functionnality_check(gr.top_block):
class tx_rx_hier_functionality_check(gr.top_block):

def __init__(self):
gr.top_block.__init__(self, "Tx Rx Hier Functionnality Check", catch_exceptions=True)
gr.top_block.__init__(self, "Tx Rx Hier Functionality Check", catch_exceptions=True)

##################################################
# Variables
Expand Down Expand Up @@ -172,7 +172,7 @@ def set_SNRdB(self, SNRdB):



def main(top_block_cls=tx_rx_hier_functionnality_check, options=None):
def main(top_block_cls=tx_rx_hier_functionality_check, options=None):
tb = top_block_cls()

def sig_handler(sig=None, frame=None):
Expand Down

0 comments on commit 9b823ad

Please sign in to comment.