diff --git a/MANIFEST.md b/MANIFEST.md index c9f5039..b2ec8fd 100644 --- a/MANIFEST.md +++ b/MANIFEST.md @@ -1,14 +1,18 @@ title: The LORA OOT Module -brief: Short description of gr-lora +brief: GNU Radio blocks for receiving LoRa modulated radio messages using SDR tags: # Tags are arbitrary, but look at CGRAN what other authors are using - sdr + - lora + - receiving + - decoding author: - - Author Name + - Pieter Robyns ) uhasselt.be> + - Eduard Marin ) esat.kuleuven.be> copyright_owner: - - Copyright Owner 1 -license: -gr_supported_version: # Put a comma separated list of supported GR versions here -#repo: # Put the URL of the repository here, or leave blank for default + - All contributors have copyright over their respective code contributions +license: GNU GENERAL PUBLIC LICENSE Version 3 +gr_supported_version: 3.9 +repo: https://github.com/rpp0/gr-lora #website: # If you have a separate project website, put it here #icon: # Put a URL to a square image here that will be used as an icon on CGRAN --- diff --git a/python/qa_testsuite.py b/python/qa_testsuite.py index 6883f69..8ce666f 100755 --- a/python/qa_testsuite.py +++ b/python/qa_testsuite.py @@ -14,6 +14,7 @@ import argparse from gnuradio import gr, gr_unittest, blocks, filter from gnuradio.filter import firdes +from gnuradio.fft import window from sigmf.sigmffile import SigMFFile from lora.loraconfig import LoRaConfig from lora.lorasocket import LoRaUDPServer @@ -230,7 +231,7 @@ class qa_testsuite(): lora_receiver = lora.lora_receiver(sample_rate, capture_freq, [868100000], bw, sf, False, 4, True, reduced_rate=False, decimation=1) throttle = blocks.throttle(gr.sizeof_gr_complex, sample_rate, True) message_socket_sink = lora.message_socket_sink("127.0.0.1", 40868, 2) - freq_xlating_fir_filter = filter.freq_xlating_fir_filter_ccc(1, (firdes.low_pass(1, sample_rate, 200000, 100000, firdes.WIN_HAMMING, 6.67)), frequency_offset, sample_rate) + freq_xlating_fir_filter = filter.freq_xlating_fir_filter_ccc(1, (firdes.low_pass(1, sample_rate, 200000, 100000, window.win_type.WIN_HAMMING, 6.67)), frequency_offset, sample_rate) # Make connections tb.connect((file_source, 0), (throttle, 0))