Fix DMR Voice Burst Bug; Update Screenshot
Fix DMR Voice Burst Bug --was gathering bits to bytes wrong, and it broke DMR ProcessVoiceBurstSync Update Screenshot to reflect current look and feel of FME
This commit is contained in:
parent
90700e7d28
commit
1d78e000da
BIN
dsd-fme.png
BIN
dsd-fme.png
Binary file not shown.
|
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 160 KiB |
|
|
@ -2417,7 +2417,7 @@ void ProcessVoiceBurstSync(dsd_opts * opts, dsd_state * state)
|
|||
for(i = 0; i < 10; i++)
|
||||
{
|
||||
LC_DataBytes[i] = 0;
|
||||
for(j = 0; j < 10; j++) //why did I change this?
|
||||
for(j = 0; j < 8; j++) //this was changed to 10 (confused) broke Voice Burst including Alias
|
||||
{
|
||||
LC_DataBytes[i] = LC_DataBytes[i] << 1;
|
||||
LC_DataBytes[i] = LC_DataBytes[i] | (LC_DataBit[k] & 0x01);
|
||||
|
|
|
|||
|
|
@ -226,7 +226,8 @@ char *choices[] = {
|
|||
"Decode NXDN96",
|
||||
"Decode X2-TDMA*",
|
||||
"Toggle Signal Inversion",
|
||||
"Privacy Key Entry",
|
||||
// "Privacy Key Entry",
|
||||
" ",
|
||||
"Reset Call History",
|
||||
"Toggle Payloads to Console",
|
||||
"Manually Set P2 Parameters", //16
|
||||
|
|
|
|||
Loading…
Reference in New Issue