2016-01-31 03:34:24 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* 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; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "baseband_thread.hpp"
|
|
|
|
|
|
|
|
#include "dsp_types.hpp"
|
|
|
|
|
|
|
|
#include "baseband.hpp"
|
|
|
|
#include "baseband_sgpio.hpp"
|
|
|
|
#include "baseband_dma.hpp"
|
|
|
|
|
|
|
|
#include "rssi.hpp"
|
|
|
|
#include "i2s.hpp"
|
2016-07-26 21:03:40 -04:00
|
|
|
using namespace lpc43xx;
|
2016-01-31 03:34:24 -05:00
|
|
|
|
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
|
2017-01-05 20:14:07 -05:00
|
|
|
#include "utility.hpp"
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
#include <array>
|
|
|
|
|
|
|
|
static baseband::SGPIO baseband_sgpio;
|
|
|
|
|
|
|
|
WORKING_AREA(baseband_thread_wa, 4096);
|
|
|
|
|
2016-06-24 18:34:49 -04:00
|
|
|
Thread* BasebandThread::thread = nullptr;
|
|
|
|
|
2016-06-25 13:57:16 -04:00
|
|
|
BasebandThread::BasebandThread(
|
2023-05-18 16:16:05 -04:00
|
|
|
uint32_t sampling_rate,
|
|
|
|
BasebandProcessor* const baseband_processor,
|
2023-07-23 02:54:17 -04:00
|
|
|
baseband::Direction direction,
|
|
|
|
bool auto_start,
|
|
|
|
tprio_t priority)
|
|
|
|
: baseband_processor_{baseband_processor},
|
|
|
|
direction_{direction},
|
|
|
|
sampling_rate_{sampling_rate},
|
|
|
|
priority_{priority} {
|
|
|
|
if (auto_start) start();
|
2016-01-31 03:34:24 -05:00
|
|
|
}
|
|
|
|
|
2016-06-24 18:34:49 -04:00
|
|
|
BasebandThread::~BasebandThread() {
|
2023-07-23 02:54:17 -04:00
|
|
|
if (thread) {
|
|
|
|
chThdTerminate(thread);
|
|
|
|
chThdWait(thread);
|
|
|
|
thread = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BasebandThread::start() {
|
|
|
|
if (!thread) {
|
|
|
|
thread = chThdCreateStatic(
|
|
|
|
baseband_thread_wa, sizeof(baseband_thread_wa),
|
|
|
|
priority_, ThreadBase::fn, this);
|
|
|
|
}
|
2016-01-31 03:34:24 -05:00
|
|
|
}
|
|
|
|
|
2017-02-01 03:53:26 -05:00
|
|
|
void BasebandThread::set_sampling_rate(uint32_t new_sampling_rate) {
|
2023-07-23 02:54:17 -04:00
|
|
|
sampling_rate_ = new_sampling_rate;
|
2017-02-01 03:53:26 -05:00
|
|
|
}
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
void BasebandThread::run() {
|
2023-05-18 16:16:05 -04:00
|
|
|
baseband_sgpio.init();
|
|
|
|
baseband::dma::init();
|
|
|
|
|
|
|
|
const auto baseband_buffer = std::make_unique<std::array<baseband::sample_t, 8192>>();
|
2023-07-23 02:54:17 -04:00
|
|
|
baseband::dma::configure(baseband_buffer->data(), direction());
|
2023-05-18 16:16:05 -04:00
|
|
|
// baseband::dma::allocate(4, 2048);
|
|
|
|
|
|
|
|
baseband_sgpio.configure(direction());
|
|
|
|
baseband::dma::enable(direction());
|
|
|
|
baseband_sgpio.streaming_enable();
|
|
|
|
|
|
|
|
while (!chThdShouldTerminate()) {
|
|
|
|
// TODO: Place correct sampling rate into buffer returned here:
|
|
|
|
const auto buffer_tmp = baseband::dma::wait_for_buffer();
|
|
|
|
if (buffer_tmp) {
|
|
|
|
buffer_c8_t buffer{
|
2023-07-23 02:54:17 -04:00
|
|
|
buffer_tmp.p, buffer_tmp.count, sampling_rate_};
|
2023-05-18 16:16:05 -04:00
|
|
|
|
2023-07-23 02:54:17 -04:00
|
|
|
if (baseband_processor_) {
|
|
|
|
baseband_processor_->execute(buffer);
|
2023-05-18 16:16:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i2s::i2s0::tx_mute();
|
|
|
|
baseband::dma::disable();
|
|
|
|
baseband_sgpio.streaming_disable();
|
2015-12-10 18:53:54 -05:00
|
|
|
}
|