1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-12 16:16:35 -04:00
sdrangel/plugins/channel/lora/lorademod.cpp

167 lines
5.0 KiB
C++
Raw Normal View History

2015-01-10 19:12:58 -05:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
// written by Christian Daniel //
// (c) 2015 John Greb
// //
// This program 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 as version 3 of the License, or //
// //
// This program 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 V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QTime>
#include <stdio.h>
#include "lorademod.h"
#include "dsp/dspcommands.h"
2015-01-20 19:53:00 -05:00
#include "lorabits.h"
2015-01-15 05:57:05 -05:00
2015-01-10 19:12:58 -05:00
MESSAGE_CLASS_DEFINITION(LoRaDemod::MsgConfigureLoRaDemod, Message)
LoRaDemod::LoRaDemod(SampleSink* sampleSink) :
m_sampleSink(sampleSink)
{
m_Bandwidth = 7813;
m_sampleRate = 96000;
m_frequency = 0;
m_nco.setFreq(m_frequency, m_sampleRate);
2015-01-11 07:27:11 -05:00
m_interpolator.create(16, m_sampleRate, m_Bandwidth/1.9);
2015-01-10 19:12:58 -05:00
m_sampleDistanceRemain = (Real)m_sampleRate / m_Bandwidth;
2015-01-11 07:27:11 -05:00
m_chirp = 0;
2015-01-10 19:12:58 -05:00
m_angle = 0;
2015-01-12 14:59:45 -05:00
m_bin = 0;
2015-01-13 14:14:36 -05:00
m_result = 0;
m_count = 0;
2015-01-17 10:59:44 -05:00
m_header = 0;
2015-01-11 14:30:48 -05:00
loraFilter = new sfft(LORA_SFFT_LEN);
2015-01-13 19:48:48 -05:00
negaFilter = new sfft(LORA_SFFT_LEN);
2015-01-15 05:57:05 -05:00
2015-01-20 19:53:00 -05:00
mov = new float[4*LORA_SFFT_LEN];
gray = new short[1<<8];
make_gray();
2015-01-10 19:12:58 -05:00
}
LoRaDemod::~LoRaDemod()
{
2015-01-11 14:30:48 -05:00
if (loraFilter)
delete loraFilter;
2015-01-13 19:48:48 -05:00
if (negaFilter)
delete negaFilter;
2015-01-20 19:53:00 -05:00
if (mov)
delete [] mov;
if (gray)
delete [] gray;
2015-01-10 19:12:58 -05:00
}
void LoRaDemod::configure(MessageQueue* messageQueue, Real Bandwidth)
{
Message* cmd = MsgConfigureLoRaDemod::create(Bandwidth);
cmd->submit(messageQueue, this);
}
2015-01-13 19:48:48 -05:00
2015-01-20 19:53:00 -05:00
int LoRaDemod::detect(Complex c, Complex a)
2015-01-12 14:59:45 -05:00
{
2015-01-20 19:53:00 -05:00
int i, result, negresult, movpoint;
float peak, negpeak, tfloat;
2015-01-13 14:14:36 -05:00
float mag[LORA_SFFT_LEN];
2015-01-13 19:48:48 -05:00
float rev[LORA_SFFT_LEN];
2015-01-13 14:14:36 -05:00
2015-01-13 19:48:48 -05:00
loraFilter->run(c * a);
negaFilter->run(c * conj(a));
2015-01-20 19:53:00 -05:00
// process spectrum twice in FFTLEN
if (++m_count & ((1 << DATA_BITS) - 1))
2015-01-13 14:14:36 -05:00
return m_result;
2015-01-20 19:53:00 -05:00
movpoint = 3 & (m_count >> DATA_BITS);
2015-01-13 14:14:36 -05:00
loraFilter->fetch(mag);
2015-01-13 19:48:48 -05:00
negaFilter->fetch(rev);
2015-01-17 10:59:44 -05:00
peak = negpeak = 0.0f;
result = negresult = 0;
2015-01-12 14:59:45 -05:00
for (i = 0; i < LORA_SFFT_LEN; i++) {
2015-01-17 10:59:44 -05:00
if (rev[i] > negpeak) {
negpeak = rev[i];
negresult = i;
2015-01-13 19:48:48 -05:00
}
2015-01-20 19:53:00 -05:00
tfloat = mov[i] + mov[LORA_SFFT_LEN + i] +mov[2 * LORA_SFFT_LEN + i]
+ mov[3 * LORA_SFFT_LEN + i] + mag[i];
if (tfloat > peak) {
peak = tfloat;
2015-01-17 10:59:44 -05:00
result = i;
2015-01-12 14:59:45 -05:00
}
2015-01-20 19:53:00 -05:00
mov[movpoint * LORA_SFFT_LEN + i] = mag[i];
2015-01-12 14:59:45 -05:00
}
2015-01-17 10:59:44 -05:00
if (peak > negpeak) {
m_result = result;
}
2015-01-13 14:14:36 -05:00
return m_result;
2015-01-12 14:59:45 -05:00
}
2015-01-10 19:12:58 -05:00
void LoRaDemod::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool pO)
{
2015-01-12 14:59:45 -05:00
int newangle;
2015-01-10 19:12:58 -05:00
Complex ci;
2015-01-12 14:59:45 -05:00
2015-01-10 19:12:58 -05:00
m_sampleBuffer.clear();
for(SampleVector::const_iterator it = begin; it < end; ++it) {
Complex c(it->real() / 32768.0, it->imag() / 32768.0);
c *= m_nco.nextIQ();
if(m_interpolator.interpolate(&m_sampleDistanceRemain, c, &ci)) {
2015-01-11 07:27:11 -05:00
m_chirp = (m_chirp + 1) & (SPREADFACTOR - 1);
m_angle = (m_angle + m_chirp) & (SPREADFACTOR - 1);
Complex cangle(cos(M_PI*2*m_angle/SPREADFACTOR),-sin(M_PI*2*m_angle/SPREADFACTOR));
2015-01-13 19:48:48 -05:00
newangle = detect(ci, cangle);
2015-01-12 14:59:45 -05:00
2015-01-15 05:57:05 -05:00
m_bin = (m_bin + newangle) & (LORA_SFFT_LEN - 1);
Complex nangle(cos(M_PI*2*m_bin/LORA_SFFT_LEN),sin(M_PI*2*m_bin/LORA_SFFT_LEN));
2015-01-13 19:48:48 -05:00
m_sampleBuffer.push_back(Sample(nangle.real() * 100, nangle.imag() * 100));
2015-01-10 19:12:58 -05:00
m_sampleDistanceRemain += (Real)m_sampleRate / m_Bandwidth;
}
}
if(m_sampleSink != NULL)
2015-01-15 05:57:05 -05:00
m_sampleSink->feed(m_sampleBuffer.begin(), m_sampleBuffer.end(), false);
2015-01-10 19:12:58 -05:00
}
void LoRaDemod::start()
{
}
void LoRaDemod::stop()
{
}
bool LoRaDemod::handleMessage(Message* cmd)
{
if(DSPSignalNotification::match(cmd)) {
DSPSignalNotification* signal = (DSPSignalNotification*)cmd;
m_sampleRate = signal->getSampleRate();
m_nco.setFreq(-signal->getFrequencyOffset(), m_sampleRate);
2015-01-11 07:27:11 -05:00
m_interpolator.create(16, m_sampleRate, m_Bandwidth/1.9);
2015-01-10 19:12:58 -05:00
m_sampleDistanceRemain = m_sampleRate / m_Bandwidth;
cmd->completed();
return true;
} else if(MsgConfigureLoRaDemod::match(cmd)) {
MsgConfigureLoRaDemod* cfg = (MsgConfigureLoRaDemod*)cmd;
m_Bandwidth = cfg->getBandwidth();
2015-01-11 07:27:11 -05:00
m_interpolator.create(16, m_sampleRate, m_Bandwidth/1.9);
2015-01-10 19:12:58 -05:00
cmd->completed();
return true;
} else {
if(m_sampleSink != NULL)
return m_sampleSink->handleMessage(cmd);
else
return false;
}
}