You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
4.0 KiB
128 lines
4.0 KiB
/**
|
|
* Digital Voice Modem - Host Software
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* @package DVM / Host Software
|
|
*
|
|
*/
|
|
/*
|
|
* Copyright (C) 2023 by Bryan Biedenkapp N2PLL
|
|
*
|
|
* 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 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#if !defined(__SETUP_APPLICATION_H__)
|
|
#define __SETUP_APPLICATION_H__
|
|
|
|
#include "host/setup/HostSetup.h"
|
|
#include "host/setup/SetupMainWnd.h"
|
|
#include "Log.h"
|
|
|
|
#include <final/final.h>
|
|
using namespace finalcut;
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Class Declaration
|
|
// This class implements the finalcut application.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
class HOST_SW_API SetupApplication final : public finalcut::FApplication {
|
|
public:
|
|
/// <summary>
|
|
/// Initializes a new instance of the SetupApplication class.
|
|
/// </summary>
|
|
/// <param name="setup"></param>
|
|
/// <param name="argc"></param>
|
|
/// <param name="argv"></param>
|
|
explicit SetupApplication(HostSetup* setup, const int& argc, char** argv) : FApplication{argc, argv},
|
|
m_setup(setup)
|
|
{
|
|
m_statusRefreshTimer = addTimer(1000);
|
|
}
|
|
|
|
protected:
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
virtual void processExternalUserEvent()
|
|
{
|
|
if (m_setup->m_isConnected) {
|
|
if (m_setup->m_p25TduTest && m_setup->m_queue.hasSpace(p25::P25_TDU_FRAME_LENGTH_BYTES + 2U)) {
|
|
uint8_t data[p25::P25_TDU_FRAME_LENGTH_BYTES + 2U];
|
|
::memset(data + 2U, 0x00U, p25::P25_TDU_FRAME_LENGTH_BYTES);
|
|
|
|
// Generate Sync
|
|
p25::Sync::addP25Sync(data + 2U);
|
|
|
|
// Generate NID
|
|
std::unique_ptr<p25::NID> nid = new_unique(p25::NID, 1U);
|
|
nid->encode(data + 2U, p25::P25_DUID_TDU);
|
|
|
|
// Add busy bits
|
|
p25::P25Utils::addBusyBits(data + 2U, p25::P25_TDU_FRAME_LENGTH_BITS, true, true);
|
|
|
|
data[0U] = modem::TAG_EOT;
|
|
data[1U] = 0x00U;
|
|
|
|
m_setup->addFrame(data, p25::P25_TDU_FRAME_LENGTH_BYTES + 2U, p25::P25_LDU_FRAME_LENGTH_BYTES);
|
|
}
|
|
|
|
// ------------------------------------------------------
|
|
// -- Modem Clocking --
|
|
// ------------------------------------------------------
|
|
|
|
uint32_t ms = m_setup->m_stopWatch.elapsed();
|
|
m_setup->m_stopWatch.start();
|
|
|
|
m_setup->m_modem->clock(ms);
|
|
|
|
m_setup->timerClock();
|
|
|
|
if (ms < 2U)
|
|
Thread::sleep(1U);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Event Handlers
|
|
*/
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="timer"></param>
|
|
void onTimer(FTimerEvent* timer) override
|
|
{
|
|
if (timer != nullptr) {
|
|
if (timer->getTimerId() == m_statusRefreshTimer) {
|
|
m_setup->m_setupWnd->updateMenuStates();
|
|
|
|
// display modem status
|
|
if (m_setup->m_isConnected) {
|
|
if (m_setup->m_setupWnd->m_statusWnd.isShown()) {
|
|
m_setup->printStatus();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private:
|
|
HostSetup* m_setup;
|
|
|
|
int m_statusRefreshTimer;
|
|
};
|
|
|
|
#endif // __SETUP_APPLICATION_H__
|