#pragma once /* * (C) 2022 by sysmocom s.f.m.c. GmbH * All Rights Reserved * * Author: Eric Wild * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation; either version 3 of the License, 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ #include #include #include #include "GSMCommon.h" #include "ms.h" class upper_trx : public ms_trx { volatile bool mOn; char demodded_softbits[444]; // void driveControl(); bool pullRadioVector(GSM::Time &wTime, int &RSSI, int &timingOffset); pthread_t thr_control, thr_tx; public: void start_threads(); void main_loop(); void stop_upper_threads(); bool driveControl(); void driveReceiveFIFO(); void driveTx(); upper_trx() = delete; explicit upper_trx(struct mssdr_cfg *cfgdata) : ms_trx(cfgdata), mOn(false){}; };