forked from spm81/MCFW_UV-K5_Open_Source_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
radio.h
192 lines (168 loc) · 4.5 KB
/
radio.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef RADIO_H
#define RADIO_H
#include "dcs.h"
#include <stdbool.h>
#include <stdint.h>
enum {
MR_CH_SCANLIST1 = (1U << 7),
MR_CH_SCANLIST2 = (1U << 6),
MR_CH_BAND_MASK = 0x0FU,
};
enum {
RADIO_CHANNEL_UP = 0x01U,
RADIO_CHANNEL_DOWN = 0xFFU,
};
enum {
BANDWIDTH_WIDE = 0U,
BANDWIDTH_NARROW = 1U,
BANDWIDTH_NARROWAVIATION = 2U,
BANDWIDTH_NARROWER = 3U,
// BANDWIDTH_NARROWEST = 4U,
};
enum PTT_ID_t {
PTT_ID_OFF = 0U,
PTT_ID_BOT = 1U,
PTT_ID_EOT = 2U,
PTT_ID_BOTH = 3U,
};
typedef enum PTT_ID_t PTT_ID_t;
enum STEP_Setting_t {
STEP_0_01kHz,
STEP_0_05kHz,
STEP_0_1kHz,
STEP_0_2_5kHz,
STEP_0_5kHz,
STEP_1_0kHz,
STEP_1_2_5kHz,
STEP_2_5kHz,
STEP_5_0kHz,
STEP_6_25kHz,
STEP_8_33kHz,
STEP_10_0kHz,
STEP_12_5kHz,
STEP_15_0kHz,
STEP_20_0kHz,
STEP_25_0kHz,
STEP_30_0kHz,
STEP_50_0kHz,
STEP_100_0kHz,
};
typedef enum UpconverterTypes {
UPCONVERTER_OFF,
UPCONVERTER_50M,
UPCONVERTER_70M,
UPCONVERTER_106M,
UPCONVERTER_125M,
UPCONVERTER_140M,
UPCONVERTER_200M,
} UpconverterTypes;
#ifdef ENABLE_CW
extern const char *modulationTypeOptions[6];
#else
extern const char *modulationTypeOptions[5];
#endif
extern const char *vfoStateNames[];
extern const char *powerNames[];
extern const char *bwNames[4];
extern const char *deviationNames[];
typedef enum ModulationType {
MOD_FM,
MOD_AM,
MOD_USB,
#ifdef ENABLE_CW
MOD_CW,
#endif
MOD_BYP,
MOD_RAW,
} ModulationType;
typedef enum STEP_Setting_t STEP_Setting_t;
enum VfoState_t {
VFO_STATE_NORMAL = 0U,
VFO_STATE_BUSY = 1U,
VFO_STATE_BAT_LOW = 2U,
VFO_STATE_TX_DISABLE = 3U,
VFO_STATE_TIMEOUT = 4U,
VFO_STATE_ALARM = 5U,
VFO_STATE_VOL_HIGH = 6U,
};
typedef enum VfoState_t VfoState_t;
typedef struct {
uint32_t Frequency;
DCS_CodeType_t CodeType;
uint8_t Code;
uint8_t Padding[2];
} FREQ_Config_t;
typedef struct VFO_Info_t {
FREQ_Config_t ConfigRX;
FREQ_Config_t ConfigTX;
FREQ_Config_t *pRX;
FREQ_Config_t *pTX;
uint32_t FREQUENCY_OF_DEVIATION;
uint16_t StepFrequency;
uint8_t CHANNEL_SAVE;
uint8_t FREQUENCY_DEVIATION_SETTING;
uint8_t SquelchOpenRSSIThresh;
uint8_t SquelchOpenNoiseThresh;
uint8_t SquelchCloseGlitchThresh;
uint8_t SquelchCloseRSSIThresh;
uint8_t SquelchCloseNoiseThresh;
uint8_t SquelchOpenGlitchThresh;
STEP_Setting_t STEP_SETTING;
uint8_t OUTPUT_POWER;
uint8_t TXP_CalculatedSetting;
bool FrequencyReverse;
uint8_t SCRAMBLING_TYPE;
uint8_t CHANNEL_BANDWIDTH;
uint8_t SCANLIST1_PARTICIPATION;
uint8_t SCANLIST2_PARTICIPATION;
uint8_t Band;
uint8_t DTMF_DECODING_ENABLE;
PTT_ID_t DTMF_PTT_ID_TX_MODE;
uint8_t BUSY_CHANNEL_LOCK;
uint8_t AM_CHANNEL_MODE;
ModulationType ModulationType;
char Name[16];
} VFO_Info_t;
extern VFO_Info_t *gTxVfo;
extern VFO_Info_t *gRxVfo;
extern VFO_Info_t *gCurrentVfo;
extern DCS_CodeType_t gCurrentCodeType;
extern DCS_CodeType_t gSelectedCodeType;
extern uint8_t gSelectedCode;
extern STEP_Setting_t gStepSetting;
extern UpconverterTypes gUpconverter;
extern VfoState_t VfoState[4];
bool RADIO_CheckValidChannel(uint16_t ChNum, bool bCheckScanList,
uint8_t RadioNum);
uint8_t RADIO_FindNextChannel(uint8_t ChNum, int8_t Direction,
bool bCheckScanList, uint8_t RadioNum);
void RADIO_InitInfo(VFO_Info_t *pInfo, uint8_t ChannelSave, uint8_t ChIndex,
uint32_t Frequency);
void RADIO_ConfigureChannel(uint8_t RadioNum, uint32_t Arg);
void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo);
uint32_t GetOffsetedF(VFO_Info_t *pInfo, uint32_t f);
void RADIO_ApplyOffset(VFO_Info_t *pInfo);
void RADIO_SelectVfos(void);
void RADIO_SetupRegisters(bool bSwitchToFunction0);
void RADIO_SetTxParameters(void);
void RADIO_SetVfoState(VfoState_t State);
void RADIO_PrepareTX(void);
void RADIO_EnableCxCSS(void);
void RADIO_PrepareCssTX(void);
void RADIO_SendEndOfTransmission(void);
#endif