Renable DMR Late Entry SB; Misc;
This commit is contained in:
parent
966fbf8c6a
commit
b40281fda3
|
|
@ -54,7 +54,7 @@ endif ()
|
||||||
|
|
||||||
#use cmake option -DZDEV to change designation of this build from MAIN to zDEV
|
#use cmake option -DZDEV to change designation of this build from MAIN to zDEV
|
||||||
option(ZDEV
|
option(ZDEV
|
||||||
"change designation of this build from MAIN to zDEV" ON)
|
"change designation of this build from MAIN to zDEV" OFF)
|
||||||
if (ZDEV)
|
if (ZDEV)
|
||||||
add_definitions(-DZDEV_BUILD)
|
add_definitions(-DZDEV_BUILD)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
|
||||||
|
|
@ -628,7 +628,7 @@ initOpts (dsd_opts * opts)
|
||||||
opts->dmr_dmrla_n = 0;
|
opts->dmr_dmrla_n = 0;
|
||||||
|
|
||||||
//DMR Late Entry
|
//DMR Late Entry
|
||||||
opts->dmr_le = 0; //off by default until worked out some more
|
opts->dmr_le = 1; //re-enabled again
|
||||||
|
|
||||||
//Trunking - Use Group List as Allow List
|
//Trunking - Use Group List as Allow List
|
||||||
opts->trunk_use_allow_list = 0; //disabled by default
|
opts->trunk_use_allow_list = 0; //disabled by default
|
||||||
|
|
@ -1157,9 +1157,11 @@ usage ()
|
||||||
printf (" \n");
|
printf (" \n");
|
||||||
printf (" -0 Force RC4 Key over Missing PI header/LE Encryption Identifiers (DMR) \n");
|
printf (" -0 Force RC4 Key over Missing PI header/LE Encryption Identifiers (DMR) \n");
|
||||||
printf (" \n");
|
printf (" \n");
|
||||||
printf (" -3 Enable DMR Late Entry Encryption Identifiers (VC6 Single Burst) \n");
|
printf (" -3 Disable DMR Late Entry Encryption Identifiers (VC6 Single Burst) \n");
|
||||||
printf (" Note: This is experimental and may produce false positives depending on system type, notably Cap+. \n");
|
printf (" Note: Disable this if false positives on Voice ENC occur. \n");
|
||||||
printf (" Use -0 or -4 options above instead if needed. \n");
|
// printf (" -3 Enable DMR Late Entry Encryption Identifiers (VC6 Single Burst) \n");
|
||||||
|
// printf (" Note: This is experimental and may produce false positives depending on system type, notably TXI. \n");
|
||||||
|
// printf (" Use -0 or -4 options above instead if needed. \n");
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf (" Trunking Options:\n");
|
printf (" Trunking Options:\n");
|
||||||
printf (" -C <file> Import Channel to Frequency Map (channum, freq) from csv file. (Capital C) \n");
|
printf (" -C <file> Import Channel to Frequency Map (channum, freq) from csv file. (Capital C) \n");
|
||||||
|
|
@ -1372,7 +1374,7 @@ main (int argc, char **argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef AERO_BUILD
|
#ifdef AERO_BUILD
|
||||||
fprintf (stderr, "Build Version: v2.1 Beta 2\n");
|
fprintf (stderr, "Build Version: v2.1 Beta 3\n");
|
||||||
#else
|
#else
|
||||||
fprintf (stderr, "Build Version: %s \n", GIT_TAG);
|
fprintf (stderr, "Build Version: %s \n", GIT_TAG);
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -1424,7 +1426,7 @@ main (int argc, char **argv)
|
||||||
|
|
||||||
case '3':
|
case '3':
|
||||||
opts.dmr_le = 1;
|
opts.dmr_le = 1;
|
||||||
fprintf (stderr,"DMR Late Entry Encryption Identifiers Enabled (VC6 Single Burst)\n");
|
fprintf (stderr,"DMR Late Entry Encryption Identifiers Disabled (VC6 Single Burst)\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'Y': //conventional scanner mode
|
case 'Y': //conventional scanner mode
|
||||||
|
|
|
||||||
|
|
@ -2158,7 +2158,7 @@ ncursesPrinter (dsd_opts * opts, dsd_state * state)
|
||||||
if (opts->ncurses_compact == 1)
|
if (opts->ncurses_compact == 1)
|
||||||
{
|
{
|
||||||
printw ("------------------------------------------------------------------------------\n");
|
printw ("------------------------------------------------------------------------------\n");
|
||||||
printw ("| Digital Speech Decoder: Florida Man Edition - Aero %s \n", "v2.1 Beta 2");
|
printw ("| Digital Speech Decoder: Florida Man Edition - Aero %s \n", "v2.1 Beta 3");
|
||||||
printw ("------------------------------------------------------------------------------\n");
|
printw ("------------------------------------------------------------------------------\n");
|
||||||
}
|
}
|
||||||
#elif LIMAZULUTWEAKS
|
#elif LIMAZULUTWEAKS
|
||||||
|
|
@ -2194,7 +2194,7 @@ ncursesPrinter (dsd_opts * opts, dsd_state * state)
|
||||||
if (i == 4) printw (" MBElib %s", versionstr);
|
if (i == 4) printw (" MBElib %s", versionstr);
|
||||||
#ifdef AERO_BUILD
|
#ifdef AERO_BUILD
|
||||||
if (i == 5) printw (" %s ", "Aero Build");
|
if (i == 5) printw (" %s ", "Aero Build");
|
||||||
if (i == 6) printw (" v2.1 Beta 2\n");
|
if (i == 6) printw (" v2.1 Beta 3\n");
|
||||||
#elif ZDEV_BUILD
|
#elif ZDEV_BUILD
|
||||||
if (i == 5) printw (" %s ", "zDEV Build");
|
if (i == 5) printw (" %s ", "zDEV Build");
|
||||||
if (i == 6) printw (" %s \n", GIT_TAG);
|
if (i == 6) printw (" %s \n", GIT_TAG);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue