2016-06-22 19:43:15 +00:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright 2016 Pieter Robyns.
|
|
|
|
#
|
|
|
|
# This is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# This software is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this software; see the file COPYING. If not, write to
|
|
|
|
# the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
|
|
|
|
from gnuradio import gr
|
|
|
|
from gnuradio.filter import freq_xlating_fir_filter_ccf, firdes, fractional_resampler_cc
|
|
|
|
from gnuradio.analog import quadrature_demod_cf
|
2016-11-24 09:56:59 +00:00
|
|
|
from gnuradio.blocks import null_sink, delay
|
2016-08-11 11:37:40 +00:00
|
|
|
import lora
|
2016-11-24 09:56:59 +00:00
|
|
|
import pmt
|
2016-06-22 19:43:15 +00:00
|
|
|
|
|
|
|
class lora_receiver(gr.hier_block2):
|
|
|
|
"""
|
|
|
|
docstring for block lora_receiver
|
|
|
|
"""
|
2016-11-24 09:56:59 +00:00
|
|
|
def __init__(self, in_samp_rate, freq, offset, sf, out_samp_rate):
|
2016-06-22 19:43:15 +00:00
|
|
|
gr.hier_block2.__init__(self,
|
|
|
|
"lora_receiver", # Min, Max, gr.sizeof_<type>
|
|
|
|
gr.io_signature(1, 1, gr.sizeof_gr_complex), # Input signature
|
|
|
|
gr.io_signature(0, 0, 0)) # Output signature
|
|
|
|
|
2016-08-11 11:37:40 +00:00
|
|
|
# Parameters
|
|
|
|
self.offset = offset
|
2016-09-16 15:07:28 +00:00
|
|
|
self.sf = sf
|
2016-08-11 11:37:40 +00:00
|
|
|
self.in_samp_rate = in_samp_rate
|
2016-11-24 09:56:59 +00:00
|
|
|
self.out_samp_rate = out_samp_rate
|
2016-08-11 11:37:40 +00:00
|
|
|
bw = 125000
|
|
|
|
|
2016-06-22 19:43:15 +00:00
|
|
|
# Define blocks
|
|
|
|
null1 = null_sink(gr.sizeof_float)
|
|
|
|
null2 = null_sink(gr.sizeof_float)
|
2016-11-24 09:56:59 +00:00
|
|
|
self.c_decoder = lora.decoder(out_samp_rate, sf)
|
2016-06-22 19:43:15 +00:00
|
|
|
|
2016-09-09 15:32:15 +00:00
|
|
|
decimation = 1
|
|
|
|
|
|
|
|
lpf = firdes.low_pass(1, out_samp_rate, 86000, 20000, firdes.WIN_HAMMING, 6.67)
|
2016-08-11 11:37:40 +00:00
|
|
|
channelizer = freq_xlating_fir_filter_ccf(decimation, lpf, offset, out_samp_rate)
|
2016-09-09 15:32:15 +00:00
|
|
|
self.channelizer = channelizer
|
|
|
|
resampler = fractional_resampler_cc(0, float(in_samp_rate) / float(out_samp_rate))
|
2016-11-24 09:56:59 +00:00
|
|
|
self.delay = delay(gr.sizeof_gr_complex, int((len(lpf)-1) / 2.0))
|
|
|
|
|
|
|
|
# Messages
|
|
|
|
self.message_port_register_hier_out('debug')
|
|
|
|
self.message_port_register_hier_out('frames')
|
2016-06-22 19:43:15 +00:00
|
|
|
|
|
|
|
# Connect blocks
|
|
|
|
self.connect((self, 0), (resampler, 0))
|
|
|
|
self.connect((resampler, 0), (channelizer, 0))
|
2016-11-24 09:56:59 +00:00
|
|
|
self.connect((channelizer, 0), (self.c_decoder, 0))
|
|
|
|
self.connect((resampler, 0), (self.delay, 0))
|
|
|
|
self.connect((self.delay, 0), (self.c_decoder, 1))
|
|
|
|
self.msg_connect((self.c_decoder, 'debug'), (self, 'debug'))
|
|
|
|
self.msg_connect((self.c_decoder, 'frames'), (self, 'frames'))
|
2016-08-11 11:37:40 +00:00
|
|
|
|
2016-09-16 15:07:28 +00:00
|
|
|
def set_sf(self):
|
|
|
|
return self.sf
|
2016-08-11 11:37:40 +00:00
|
|
|
|
2016-09-16 15:07:28 +00:00
|
|
|
def set_sf(self, sf):
|
|
|
|
self.sf = sf
|
2016-08-11 11:37:40 +00:00
|
|
|
if self.realtime:
|
2016-09-16 15:07:28 +00:00
|
|
|
self.c_decoder.set_sf(self.sf)
|
2016-09-09 15:32:15 +00:00
|
|
|
|
|
|
|
def get_offset(self):
|
|
|
|
return self.offset
|
|
|
|
|
|
|
|
def set_offset(self, offset):
|
|
|
|
self.offset = offset
|
|
|
|
self.channelizer.set_center_freq(self.offset)
|