OpenRTX/openrtx/src/core/cps.c

56 lines
2.3 KiB
C

/***************************************************************************
* Copyright (C) 2022 - 2023 by Federico Amedeo Izzo IU2NUO, *
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
* *
* 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 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 General Public License 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 <interfaces/platform.h>
#include <cps.h>
channel_t cps_getDefaultChannel()
{
channel_t channel;
#ifdef PLATFORM_MOD17
channel.mode = OPMODE_M17;
#else
channel.mode = OPMODE_FM;
#endif
channel.bandwidth = BW_25;
channel.power = 1000; // 1W
channel.rx_only = false; // Enable tx by default
// Set initial frequency based on supported bands
const hwInfo_t* hwinfo = platform_getHwInfo();
if(hwinfo->uhf_band)
{
channel.rx_frequency = 430000000;
channel.tx_frequency = 430000000;
}
else if(hwinfo->vhf_band)
{
channel.rx_frequency = 144000000;
channel.tx_frequency = 144000000;
}
channel.fm.rxToneEn = 0; //disabled
channel.fm.rxTone = 0; //and no ctcss/dcs selected
channel.fm.txToneEn = 0;
channel.fm.txTone = 0;
return channel;
}