MMDVM/FMCTCSSRX.h

61 lines
1.5 KiB
C
Raw Normal View History

2020-04-15 16:24:01 +02:00
/*
* Copyright (C) 2020 by Jonathan Naylor G4KLX
*
* 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.
*/
2020-04-18 14:55:34 +02:00
#if !defined(FMCTCSSRX_H)
#define FMCTCSSRX_H
2020-04-15 16:24:01 +02:00
#include "Config.h"
2020-04-22 15:08:34 +02:00
enum CTCSSState
{
2020-05-02 15:47:43 +02:00
CTS_NONE,
CTS_READY,
CTS_VALID
};
#define CTCSS_READY(a) ((a & CTS_READY) != 0)
#define CTCSS_NOT_READY(a) ((a & CTS_READY) == 0)
#define CTCSS_VALID(a) ((a & CTS_VALID) != 0)
#define CTCSS_NOT_VALID(a) ((a & CTS_VALID) == 0)
2020-04-18 14:55:34 +02:00
class CFMCTCSSRX {
2020-04-15 16:24:01 +02:00
public:
2020-04-18 14:55:34 +02:00
CFMCTCSSRX();
2020-04-15 16:24:01 +02:00
2020-04-27 13:05:55 +02:00
uint8_t setParams(uint8_t frequency, uint8_t threshold, uint8_t level);
2020-04-26 12:24:05 +02:00
CTCSSState process(q15_t sample);
2020-04-15 16:24:01 +02:00
CTCSSState getState();
2020-04-18 17:48:30 +02:00
void reset();
2020-04-15 16:24:01 +02:00
private:
q63_t m_coeffDivTwo;
q31_t m_threshold;
uint16_t m_count;
q31_t m_q0;
q31_t m_q1;
CTCSSState m_result;
2020-04-27 13:05:55 +02:00
q15_t m_rxLevelInverse;
2020-05-02 15:47:43 +02:00
q15_t q15Division(q15_t a, q15_t divisor);
2020-04-15 16:24:01 +02:00
};
#endif