-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFEC.c
390 lines (297 loc) · 11.8 KB
/
FEC.c
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// ARDOP Modem Decode Sound Samples
#include "ARDOPC.h"
extern BOOL blnAbort;
int intFECFramesSent;
int FECRepeatsSent;
UCHAR bytFrameType;
BOOL blnSendIDFrame;
extern BOOL NeedID; // SENDID Command Flag
extern int intRepeatCount;
extern int intLastFrameIDToHost;
int bytFailedDataLength;
extern int intLastFailedFrameID;
int crcLastFECDataPassedToHost;
UCHAR bytFailedData[1600]; // do we rally need that much ????
extern int intNumCar;
extern int intBaud;
extern int intDataLen;
extern int intRSLen;
extern int intSampleLen;
extern int intDataPtr;
extern int intSampPerSym;
extern int intDataBytesPerCar;
extern BOOL blnOdd;
extern char strType[18];
extern char strMod[16];
extern UCHAR bytMinQualThresh;
UCHAR bytLastFECDataFrameSent;
char strCurrentFrameFilename[16];
unsigned int dttLastFECIDSent;
extern int intCalcLeader; // the computed leader to use based on the reported Leader Length
// Function to start sending FEC data
BOOL StartFEC(UCHAR * bytData, int Len, char * strDataMode, int intRepeats, BOOL blnSendID)
{
// Return True if OK false if problem
BOOL blnModeOK = FALSE;
int i;
FECRepeats = intRepeats;
if (ProtocolState == FECSend) // If already sending FEC data simply add to the OB queue
{
AddDataToDataToSend(bytData, Len); // add new data to queue
WriteDebugLog(LOGDEBUG, "[ARDOPprotocol.StartFEC] %d bytes received while in FECSend state...append to data to send.", Len);
return TRUE;
}
else
dttLastFECIDSent = Now;
// Check to see that there is data in the buffer.
if (Len == 0 && bytDataToSendLength == 0)
{
WriteDebugLog(LOGDEBUG, "[ARDOPprotocol.StartFEC] No data to send!");
return FALSE;
}
// Check intRepeates
if (intRepeats < 0 || intRepeats > 5)
{
// Logs.Exception("[ARDOPprotocol.StartFEC] Repeats out of range: " & intRepeats.ToString)
return FALSE;
}
// check call sign
if (!CheckValidCallsignSyntax(Callsign))
{
// Logs.Exception("[ARDOPprotocol.StartFEC] Invalid call sign: " & MCB.Callsign)
return FALSE;
}
// Check to see that strDataMode is correct
for (i = 0; i < strAllDataModesLen; i++)
{
if (strcmp(strDataMode, strAllDataModes[i]) == 0)
{
strcpy(strFECMode, strDataMode);
blnModeOK = TRUE;
break;
}
}
if (blnModeOK == FALSE)
{
//Logs.Exception("[ARDOPprotocol.StartFEC] Illegal FEC mode: " & strDataMode)
return FALSE;
}
//While objMain.SoundIsPlaying
// Thread.Sleep(100)
//End While
blnAbort = FALSE;
intFrameRepeatInterval = 400; // should be a safe number for FEC...perhaps could be shortened down to 200 -300 ms
AddDataToDataToSend(bytData, Len); // add new data to queue
SetARDOPProtocolState(FECSend); // set to FECSend state
blnSendIDFrame = blnSendID;
if (blnSendID)
{
NeedID = TRUE;
}
else
{
// Cant we just call GetNextFECFrame??
// GetNextFECFrame(); // Use timer to start so cmd response is immediate
/*
Dim bytFrameData(-1) As Byte
strFrameComponents = strFECMode.Split(".")
bytFrameType = objFrameInfo.FrameCode(strFECMode & ".E")
If bytFrameType = bytLastFECDataFrameSent Then ' Added 0.3.4.1
bytFrameType = bytFrameType Xor &H1 ' insures a new start is on a different frame type.
End If
objFrameInfo.FrameInfo(bytFrameType, blnOdd, intNumCar, strMod, intBaud, intDataLen, intRSLen, bytQualThres, strType)
GetDataFromQueue(bytFrameData, intDataLen * intNumCar)
' If bytFrameData.Length < (intDataLen * intNumCar) Then ReDim Preserve bytFrameData((intDataLen * intNumCar) - 1)
'Logs.WriteDebug("[ARDOPprotocol.StartFEC] Frame Data (string) = " & GetString(bytFrameData))
If strMod = "4FSK" Then
bytFrameData = objMain.objMod.EncodeFSKData(bytFrameType, bytFrameData, strCurrentFrameFilename)
intCurrentFrameSamples = objMain.objMod.Mod4FSKData(bytFrameType, bytFrameData)
ElseIf strMod = "16FSK" Then
bytFrameData = objMain.objMod.EncodeFSKData(bytFrameType, bytFrameData, strCurrentFrameFilename)
intCurrentFrameSamples = objMain.objMod.Mod16FSKData(bytFrameType, bytFrameData)
ElseIf strMod = "8FSK" Then
bytFrameData = objMain.objMod.EncodeFSKData(bytFrameType, bytFrameData, strCurrentFrameFilename)
intCurrentFrameSamples = objMain.objMod.Mod8FSKData(bytFrameType, bytFrameData)
Else
bytFrameData = objMain.objMod.EncodePSK(bytFrameType, bytFrameData, strCurrentFrameFilename)
intCurrentFrameSamples = objMain.objMod.ModPSK(bytFrameType, bytFrameData)
End If
bytLastFECDataFrameSent = bytFrameType
objMain.SendFrame(intCurrentFrameSamples, strCurrentFrameFilename)
intFECFramesSent = 1
*/
}
return TRUE;
}
// Function to get the next FEC data frame
BOOL GetNextFECFrame()
{
int Len;
int intNumCar, intBaud, intDataLen, intRSLen;
BOOL blnOdd;
char strType[18] = "";
char strMod[16] = "";
if (blnAbort)
{
ClearDataToSend();
WriteDebugLog(LOGDEBUG, "[GetNextFECFrame] FECAbort. Going to DISC state");
KeyPTT(FALSE); // insurance for PTT off
SetARDOPProtocolState(DISC);
blnAbort = FALSE;
return FALSE;
}
if (intFECFramesSent == -1)
{
WriteDebugLog(LOGDEBUG, "[GetNextFECFrame] intFECFramesSent = -1. Going to DISC state");
SetARDOPProtocolState(DISC);
KeyPTT(FALSE); // insurance for PTT off
return FALSE;
}
if (bytDataToSendLength == 0 && FECRepeatsSent >= FECRepeats && ProtocolState == FECSend)
{
WriteDebugLog(LOGDEBUG, "[GetNextFECFrame] All data and repeats sent. Going to DISC state");
SetARDOPProtocolState(DISC);
blnEnbARQRpt = FALSE;
KeyPTT(FALSE); // insurance for PTT of
return FALSE;
}
if (ProtocolState == DISC && intPINGRepeats > 0)
{
intRepeatCount++;
if (intRepeatCount <= intPINGRepeats && blnPINGrepeating)
{
dttLastPINGSent = Now;
return TRUE; // continue PING
}
intPINGRepeats = 0;
blnPINGrepeating = False;
return FALSE;
}
if (ProtocolState != FECSend)
return FALSE;
if (intFECFramesSent == 0)
{
// Initialize the first FEC Data frame (even) from the queue and compute the Filtered samples and filename
char FullType[18];
strcpy(FullType, strFECMode);
strcat(FullType, ".E");
bytFrameType = FrameCode(FullType);
// If bytFrameType = bytLastFECDataFrameSent Then ' Added 0.3.4.1
// bytFrameType = bytFrameType Xor 0x1 ' insures a new start is on a different frame type.
// End If
FrameInfo(bytFrameType, &blnOdd, &intNumCar, strMod, &intBaud, &intDataLen, &intRSLen, &bytMinQualThresh, strType);
Len = intDataLen * intNumCar;
if (Len > bytDataToSendLength)
Len = bytDataToSendLength;
bytLastFECDataFrameSent = bytFrameType;
sendit:
if (FECRepeats)
blnEnbARQRpt = TRUE;
else
blnEnbARQRpt = FALSE;
intFrameRepeatInterval = 400; // should be a safe number for FEC...perhaps could be shortened down to 200 -300 ms
FECRepeatsSent = 0;
intFECFramesSent += 1;
bytFrameType = bytLastFECDataFrameSent;
if (strcmp(strMod, "4FSK") == 0)
{
EncLen = EncodeFSKData(bytFrameType, bytDataToSend, Len, bytEncodedBytes);
RemoveDataFromQueue(Len); // No ACKS in FEC
if (bytFrameType >= 0x7A && bytFrameType <= 0x7D)
Mod4FSK600BdDataAndPlay(bytEncodedBytes[0], bytEncodedBytes, EncLen, intCalcLeader); // Modulate Data frame
else
Mod4FSKDataAndPlay(bytEncodedBytes[0], bytEncodedBytes, EncLen, intCalcLeader); // Modulate Data frame
}
else if (strcmp(strMod, "16FSK") == 0)
{
EncLen = EncodeFSKData(bytFrameType, bytDataToSend, Len, bytEncodedBytes);
RemoveDataFromQueue(Len); // No ACKS in FEC
Mod16FSKDataAndPlay(bytEncodedBytes[0], bytEncodedBytes, EncLen, intCalcLeader); // Modulate Data frame
}
else if (strcmp(strMod, "8FSK") == 0)
{
EncLen = EncodeFSKData(bytFrameType, bytDataToSend, Len, bytEncodedBytes); // intCurrentFrameSamples = Mod8FSKData(bytFrameType, bytData);
RemoveDataFromQueue(Len); // No ACKS in FEC
Mod8FSKDataAndPlay(bytEncodedBytes[0], bytEncodedBytes, EncLen, intCalcLeader); // Modulate Data frame
}
else // This handles PSK and QAM
{
EncLen = EncodePSKData(bytFrameType, bytDataToSend, Len, bytEncodedBytes);
RemoveDataFromQueue(Len); // No ACKS in FEC
ModPSKDataAndPlay(bytEncodedBytes[0], bytEncodedBytes, EncLen, intCalcLeader); // Modulate Data frame
}
return TRUE;
}
// Not First
if (FECRepeatsSent >= FECRepeats)
{
// Send New Data
// Need to add pause
txSleep(400);
if ((Now - dttLastFECIDSent) > 600000) // 10 Mins
{
// Send ID every 10 Mins
unsigned char bytEncodedBytes[16];
EncLen = Encode4FSKIDFrame(Callsign, GridSquare, bytEncodedBytes);
Mod4FSKDataAndPlay(0x30, &bytEncodedBytes[0], 16, 0); // only returns when all sent
dttLastFECIDSent = Now;
return TRUE;
}
FrameInfo(bytLastFECDataFrameSent, &blnOdd, &intNumCar, strMod, &intBaud, &intDataLen, &intRSLen, &bytMinQualThresh, strType);
Len = intDataLen * intNumCar;
if (Len > bytDataToSendLength)
Len = bytDataToSendLength;
bytLastFECDataFrameSent = bytLastFECDataFrameSent ^ 1;
goto sendit;
}
// just a repeat of the last frame so no changes to samples...just inc frames Sent
FECRepeatsSent++;
intFECFramesSent++;
return TRUE;
}
extern int frameLen;
// Subroutine to process Received FEC data
void ProcessRcvdFECDataFrame(int intFrameType, UCHAR * bytData, BOOL blnFrameDecodedOK)
{
// Determine if this frame should be passed to Host.
if (blnFrameDecodedOK)
{
int CRC = GenCRC16(bytData, frameLen);
if (intFrameType == intLastFrameIDToHost && CRC == crcLastFECDataPassedToHost)
{
if (CommandTrace) WriteDebugLog(LOGINFO, "[ARDOPprotocol.ProcessRcvdFECDataFrame] Same Frame ID: %s and matching data, not passed to Host", Name(intFrameType));
return;
}
if (bytFailedDataLength > 0 && intLastFailedFrameID != intFrameType)
{
AddTagToDataAndSendToHost(bytFailedData, "ERR", bytFailedDataLength);
if (CommandTrace) WriteDebugLog(LOGINFO, "[ARDOPprotocol.ProcessRcvdFECDataFrame] Pass failed frame ID %s to Host (%d bytes)", Name(intFrameType), bytFailedDataLength);
bytFailedDataLength = 0;
intLastFailedFrameID = -1;
}
AddTagToDataAndSendToHost(bytData, "FEC", frameLen);
crcLastFECDataPassedToHost = GenCRC16(bytData, frameLen);
intLastFrameIDToHost = intFrameType;
if (intLastFailedFrameID == intFrameType)
{
bytFailedDataLength = 0;
intLastFailedFrameID = -1;
}
if (CommandTrace) WriteDebugLog(LOGINFO, "[ARDOPprotocol.ProcessRcvdFECDataFrame] Pass good data frame ID %s to Host (%d bytes)", Name(intFrameType), frameLen);
}
else
{
// Bad Decode
if (bytFailedDataLength > 0 && intLastFailedFrameID != intFrameType)
{
AddTagToDataAndSendToHost(bytFailedData, "ERR", bytFailedDataLength);
if (CommandTrace) WriteDebugLog(LOGINFO, "[ARDOPprotocol.ProcessRcvdFECDataFrame] Pass failed frame ID %s to Host (%d bytes)", Name(intFrameType), bytFailedDataLength);
bytFailedDataLength = 0;
intLastFrameIDToHost = intLastFailedFrameID;
if (CommandTrace) WriteDebugLog(LOGINFO, "[ARDOPprotocol.ProcessRcvdFECDataFrame] Pass failed frame ID %s to Host (%d bytes)", Name(intFrameType), bytFailedDataLength);
}
memcpy(bytFailedData, bytData, frameLen); // ' capture the current data and frame type
bytFailedDataLength = frameLen;
intLastFailedFrameID = intFrameType;
}
}