-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaskr.h
73 lines (58 loc) · 2.73 KB
/
askr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
This file is part of DigitalKalmar(Кальмар-SDR)
DigitalKalmar 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.
DigitalKalmar 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 DigitalKalmar. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef ASKR_H
#define ASKR_H
#include <definitions.h>
#include <rpu.h>
#include <sdr.h>
#include <dsp.h>
/*
Автоматическая система контроля работоспособности (АСКР) обеспечивает диагностику технического состояния РПУ при старте программы и во время работы.
Процедура тестирования проводится в 5 этапов:
«Тест калибратора»,
«Тест чувствительности»,
«Тест аттенюатора преселектора»,
«Тест аттенюатора ВЧ»,
«Тест аттенюатора ПЧ».
Измерения проводятся по каждому из каналов РПУ. */
class ASKR : public QObject
{
Q_OBJECT
QString testReport;
QString fullReport;
RPU *rpu;
SDR *sdr;
DSP *dsp;
float preselektorsAvgArray[RPU_NUMBER_OF_PRESELECTORS][RPU_NUMBER_OF_PRESELECTORS];
bool setGlobalSettings(RPU_CONFIG _config,
int _bpoCentralFreq, IF_BAND _bpoIfBand, int _bpoInAttIdx, int _bpoHfAttIdx, int _bpoIfAttIdx,
STATUS _kalibWorkStatus, int _kalibAttIdx, KALIB_TYPE _kalibSignalType, MOD_SIGNAL _kalibModSignal,
int _sdrCentralFreq, int _sdrDirectSampIdx, int _sdrTunerGainIdx, bool _sdrRtlAgc, int _sdrSampleRate,
FFT_MODE _dspFftMode, WINDOW _dspCurrentWin, float _dspDcOffset, int _dspFPS, bool _dspSoundMute);
public slots:
void testRpu();
public:
ASKR(RPU *_rpu, SDR *_sdr, DSP *_dsp);
void testKalibrator();
void testPreselektors();
void testAttenuators();
void testIfBand();
signals:
void updateAskrProgressBar(int progress);
void updateAskrResTextBrowser(QString additionalText);
void updateSplashInfoLabel(QString _text);
void globalUpdateInterface();
void endAskr();
};
#endif // ASKR_H