2021-01-17 13:17:09 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2020 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/> *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef AT1846S_H
|
|
|
|
#define AT1846S_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <datatypes.h>
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
AT1846S_BW_12P5 = 0,
|
|
|
|
AT1846S_BW_25 = 1
|
|
|
|
}
|
|
|
|
AT1846S_bw_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
AT1846S_OP_FM = 0,
|
|
|
|
AT1846S_OP_DMR = 1
|
|
|
|
}
|
|
|
|
AT1846S_op_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
AT1846S_OFF = 0,
|
|
|
|
AT1846S_RX = 1,
|
|
|
|
AT1846S_TX = 2,
|
|
|
|
}
|
|
|
|
AT1846S_func_t;
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_init();
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_postInit();
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setFrequency(const freq_t freq);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setBandwidth(AT1846S_bw_t band);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setOpMode(AT1846S_op_t mode);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setFuncMode(AT1846S_func_t mode);
|
|
|
|
|
2021-02-03 13:03:30 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void AT1846S_enableTxCtcss(tone_t freq);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void AT1846S_disableCtcss();
|
|
|
|
|
2021-01-17 13:17:09 +00:00
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
uint16_t AT1846S_readRSSI();
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setPgaGain(uint8_t gain);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setMicGain(uint8_t gain);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
2021-01-23 17:58:31 +00:00
|
|
|
void AT1846S_setTxDeviation(uint16_t dev);
|
2021-01-17 13:17:09 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setAgcGain(uint8_t gain);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setRxAudioGain(uint8_t gainWb, uint8_t gainNb);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void AT1846S_setNoise1Thresholds(uint8_t highTsh, uint8_t lowTsh);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void AT1846S_setNoise2Thresholds(uint8_t highTsh, uint8_t lowTsh);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void AT1846S_setRssiThresholds(uint8_t highTsh, uint8_t lowTsh);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setPaDrive(uint8_t value);
|
|
|
|
|
|
|
|
/**
|
2021-01-23 17:58:31 +00:00
|
|
|
*
|
2021-01-17 13:17:09 +00:00
|
|
|
*/
|
|
|
|
void AT1846S_setAnalogSqlThresh(uint8_t thresh);
|
|
|
|
|
|
|
|
#endif /* AT1846S_H */
|