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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
|
#ifndef DMR6X2UVCODEPLUG_HH
#define DMR6X2UVCODEPLUG_HH
#include "d878uv_codeplug.hh"
#include "ranges.hh"
/** Represents the device specific binary codeplug for BTECH DMR-6X2UV radios.
*
* This codeplug implementation is compatible with firmware revision 2.21. See
* https://dmr-tools.github.io/codeplugs for details.
*
* @ingroup dmr6x2uv */
class DMR6X2UVCodeplug : public D868UVCodeplug
{
Q_OBJECT
protected:
/** Colors supported by the DMR-6X2UV. */
struct Color {
public:
/** Maps code -> color. */
static AnytoneDisplaySettingsExtension::Color decode(uint8_t code);
/** Maps color -> code. */
static uint8_t encode(AnytoneDisplaySettingsExtension::Color color);
protected:
/** Encoding of the supported colors. */
typedef enum {
Orange=0, Red=1, Yellow=2, Green=3, Turquoise=4, Blue=5, White = 6, Black = 7
} CodedColor;
};
/** Background colors supported by the DMR-6X2UV. */
struct BackgroundColor {
public:
/** Maps code -> color. */
static AnytoneDisplaySettingsExtension::Color decode(uint8_t code);
/** Maps color -> code. */
static uint8_t encode(AnytoneDisplaySettingsExtension::Color color);
protected:
/** Encoding of the supported colors. */
typedef enum {
Black = 0, Blue = 1
} CodedColor;
};
/** Font colors supported by the DMR-6X2UV. */
struct FontColor {
public:
/** Maps code -> color. */
static AnytoneDisplaySettingsExtension::Color decode(uint8_t code);
/** Maps color -> code. */
static uint8_t encode(AnytoneDisplaySettingsExtension::Color color);
protected:
/** Encoding of the supported colors. */
typedef enum {
White = 0, Black = 1, Orange=2, Red=3, Yellow=4, Green=5, Turquoise=6, Blue=7
} CodedColor;
};
public:
/** General settings element for the DMR-6X2UV.
*
* Extends the @c AnytoneCodeplug::GeneralSettingsElement by the device specific settings for
* the BTECH DMR-6X2UV.
*
* Memory representation of the encoded settings element (size 0x0e0 bytes):
* @verbinclude dmr6x2uv_generalsettings.txt */
class GeneralSettingsElement: public D868UVCodeplug::GeneralSettingsElement
{
protected:
/** Device specific encoding of the key functions. */
struct KeyFunction {
public:
/** Encodes key function. */
static uint8_t encode(AnytoneKeySettingsExtension::KeyFunction tone);
/** Decodes key function. */
static AnytoneKeySettingsExtension::KeyFunction decode(uint8_t code);
protected:
/** Device specific key functions. */
typedef enum {
Off = 0x00, Voltage = 0x01, Power = 0x02, Repeater = 0x03, Reverse = 0x04,
Encryption = 0x05, Call = 0x06, VOX = 0x07, ToggleVFO = 0x08, SubPTT = 0x09,
Scan = 0x0a, WFM = 0x0b, Alarm = 0x0c, RecordSwitch = 0x0d, Record = 0x0e, SMS = 0x0f,
Dial = 0x10, GPSInformation = 0x11, Monitor = 0x12, ToggleMainChannel = 0x13, HotKey1 = 0x14,
HotKey2 = 0x15, HotKey3 = 0x16, HotKey4 = 0x17, HotKey5 = 0x18, HotKey6 = 0x19,
WorkAlone = 0x1a, SkipChannel = 0x1b, DMRMonitor = 0x1c, SubChannel = 0x1d,
PriorityZone = 0x1e, VFOScan = 0x1f, MICSoundQuality = 0x20, LastCallReply = 0x21,
ChannelType = 0x22, SimplexRepeater = 0x23, Ranging = 0x24, ChannelRanging = 0x25,
MaxVolume = 0x26, Slot = 0x27, Squelch = 0x28, Roaming = 0x29, Zone = 0x2a, RoamingSet = 0x2b,
Mute = 0x02c, CtcssDcsSet=0x2d, APRSType = 0x2e, APRSSet = 0x2f, DIMShut = 0x30,
GPSToggle = 0x31, SatPredict = 0x32
} KeyFunctionCode;
};
/** Possible VFO frequency steps. */
enum FreqStep {
FREQ_STEP_2_5kHz = 0, ///< 2.5kHz
FREQ_STEP_5kHz = 1, ///< 5kHz
FREQ_STEP_6_25kHz = 2, ///< 6.25kHz
FREQ_STEP_10kHz = 3, ///< 10kHz
FREQ_STEP_12_5kHz = 4, ///< 12.5kHz
FREQ_STEP_20kHz = 5, ///< 20kHz
FREQ_STEP_25kHz = 6, ///< 25kHz
FREQ_STEP_50kHz = 7 ///< 50kHz
};
/** DTMF signalling durations. */
enum DTMFDuration {
DTMF_DUR_50ms = 0, DTMF_DUR_100ms = 1, DTMF_DUR_200ms = 2, DTMF_DUR_300ms = 3, DTMF_DUR_500ms = 4
};
/** TBST (open repeater) frequencies. */
enum class TBSTFrequency {
Hz1000 = 0, Hz1450 = 1, Hz1750 = 2, Hz2100 = 3
};
/** All possible STE (squelch tail eliminate) frequencies. */
enum class STEFrequency {
Off = 0, Hz55_2 = 1, Hz259_2 = 2
};
/** Encoding of repeater timeslot. */
enum class RepeaterTimeSlot {
TS1 = 0, TS2 = 1, Channel = 2
};
protected:
/** Hidden Constructor. */
GeneralSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit GeneralSettingsElement(uint8_t *ptr);
/** Returns the size of the element. */
static constexpr unsigned int size() { return 0x00e0; }
bool idleChannelTone() const override;
void enableIdleChannelTone(bool enable) override;
/** Returns the transmit timeout in seconds. */
virtual unsigned transmitTimeout() const;
/** Sets the transmit timeout in seconds. */
virtual void setTransmitTimeout(unsigned tot);
/** Returns the UI language. */
virtual AnytoneDisplaySettingsExtension::Language language() const;
/** Sets the UI language. */
virtual void setLanguage(AnytoneDisplaySettingsExtension::Language lang);
/** Returns the VFO frequency step in kHz. */
virtual Frequency vfoFrequencyStep() const;
/** Sets the VFO frequency step in kHz. */
virtual void setVFOFrequencyStep(Frequency kHz);
AnytoneKeySettingsExtension::KeyFunction funcKeyAShort() const override;
void setFuncKeyAShort(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKeyBShort() const override;
void setFuncKeyBShort(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKeyCShort() const override;
void setFuncKeyCShort(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKey1Short() const override;
void setFuncKey1Short(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKey2Short() const override;
void setFuncKey2Short(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKeyALong() const override;
void setFuncKeyALong(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKeyBLong() const override;
void setFuncKeyBLong(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKeyCLong() const override;
void setFuncKeyCLong(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKey1Long() const override;
void setFuncKey1Long(AnytoneKeySettingsExtension::KeyFunction func) override;
AnytoneKeySettingsExtension::KeyFunction funcKey2Long() const override;
void setFuncKey2Long(AnytoneKeySettingsExtension::KeyFunction func) override;
bool vfoModeA() const override;
void enableVFOModeA(bool enable) override;
bool vfoModeB() const override;
void enableVFOModeB(bool enable) override;
/** Returns the STE (squelch tail eliminate) type. */
virtual AnytoneSettingsExtension::STEType steType() const;
/** Sets the STE (squelch tail eliminate) type. */
virtual void setSTEType(AnytoneSettingsExtension::STEType type);
/** Returns the STE (squelch tail eliminate) frequency setting in Hz.
* A value of 0 disables the STE. Possible values are 55.2 and 259.2 Hz. */
virtual double steFrequency() const;
/** Sets the STE (squelch tail eliminate) frequency setting.
* A value of 0 disables the STE. Possible values are 55.2 and 259.2 Hz. */
virtual void setSTEFrequency(double freq);
/** Returns the group call hang time in seconds. */
virtual Interval groupCallHangTime() const;
/** Sets the group call hang time in seconds. */
virtual void setGroupCallHangTime(Interval sec);
/** Returns the private call hang time in seconds. */
virtual Interval privateCallHangTime() const;
/** Sets the private call hang time in seconds. */
virtual void setPrivateCallHangTime(Interval sec);
/** Returns the pre-wave time in ms. */
virtual Interval preWaveDelay() const;
/** Sets the pre-wave time in ms. */
virtual void setPreWaveDelay(Interval ms);
/** Returns the wake head-period in ms. */
virtual Interval wakeHeadPeriod() const;
/** Sets the wake head-period in ms. */
virtual void setWakeHeadPeriod(Interval ms);
/** Returns the wide-FM (broadcast) channel index. */
virtual unsigned wfmChannelIndex() const;
/** Sets the wide-FM (broadcast) channel index. */
virtual void setWFMChannelIndex(unsigned idx);
/** Returns @c true if the WFM RX is in VFO mode. */
virtual bool wfmVFOEnabled() const;
/** Enables/disables VFO mode for WFM RX. */
virtual void enableWFMVFO(bool enable);
/** Returns the DTMF tone duration in ms. */
virtual unsigned dtmfToneDuration() const;
/** Sets the DTMF tone duration in ms. */
virtual void setDTMFToneDuration(unsigned ms);
/** Returns @c true if "man down" is enabled. */
virtual bool manDown() const;
/** Enables/disables "man down". */
virtual void enableManDown(bool enable);
/** Returns @c true if WFM monitor is enabled. */
virtual bool wfmMonitor() const;
/** Enables/disables WFM monitor. */
virtual void enableWFMMonitor(bool enable);
/** Returns the TBST frequency. */
virtual Frequency tbstFrequency() const;
/** Sets the TBST frequency. */
virtual void setTBSTFrequency(Frequency freq);
/** Returns @c true if the "pro mode" is enabled. */
virtual bool proMode() const;
/** Enables/disables the "pro mode". */
virtual void enableProMode(bool enable);
bool keyToneEnabled() const override;
void enableKeyTone(bool enable) override;
/** Returns @c true if the own ID is filtered in call lists. */
virtual bool filterOwnID() const;
/** Enables/disables filter of own ID in call lists. */
virtual void enableFilterOwnID(bool enable);
/** Returns @c true remote stun/kill is enabled. */
virtual bool remoteStunKill() const;
/** Enables/disables remote stun/kill. */
virtual void enableRemoteStunKill(bool enable);
/** Returns @c true remote monitor is enabled. */
virtual bool remoteMonitor() const;
/** Enables/disables remote monitor. */
virtual void enableRemoteMonitor(bool enable);
/** Returns @c true, if the selection of a TX contact is enabled. */
virtual bool selectTXContactEnabled() const;
/** Enables/disables selection of the TX contact. */
virtual void enableSelectTXContact(bool enable);
/** Returns the monitor slot match. */
virtual AnytoneDMRSettingsExtension::SlotMatch monitorSlotMatch() const;
/** Sets the monitor slot match. */
virtual void setMonitorSlotMatch(AnytoneDMRSettingsExtension::SlotMatch match);
/** Returns @c true if the monitor matches color code. */
virtual bool monitorColorCodeMatch() const;
/** Enables/disables monitor color code match. */
virtual void enableMonitorColorCodeMatch(bool enable);
/** Returns @c true if the monitor matches ID. */
virtual bool monitorIDMatch() const;
/** Enables/disables monitor ID match. */
virtual void enableMonitorIDMatch(bool enable);
/** Returns @c true if the monitor holds the time slot. */
virtual bool monitorTimeSlotHold() const;
/** Enables/disables monitor time slot hold. */
virtual void enableMonitorTimeSlotHold(bool enable);
/** Returns the "man down" delay in seconds. */
virtual Interval manDownDelay() const;
/** Sets the "man down" delay in seconds. */
virtual void setManDownDelay(Interval sec);
/** Returns the analog call hold in seconds. */
virtual unsigned fmCallHold() const;
/** Sets the analog call hold in seconds. */
virtual void setFMCallHold(unsigned sec);
/** Returns @c true if the GPS range reporting is enabled. */
virtual bool gpsMessageEnabled() const;
/** Enables/disables GPS range reporting. */
virtual void enableGPSMessage(bool enable);
/** Returns @c true if the call channel is maintained. */
virtual bool maintainCallChannel() const;
/** Enables/disables maintaining the call channel. */
virtual void enableMaintainCallChannel(bool enable);
/** Returns the priority Zone A index. */
virtual unsigned priorityZoneAIndex() const;
/** Sets the priority zone A index. */
virtual void setPriorityZoneAIndex(unsigned idx);
/** Returns the priority Zone B index. */
virtual unsigned priorityZoneBIndex() const;
/** Sets the priority zone B index. */
virtual void setPriorityZoneBIndex(unsigned idx);
/** Returns @c true, if a SMS confirmation is sent. */
virtual bool smsConfirmEnabled() const;
/** Enables/disables SMS confirmation. */
virtual void enableSMSConfirm(bool enable);
/** Returns @c true if the simplex repeater feature is enabled. */
virtual bool simplexRepeaterEnabled() const;
/** Enables disables the simplex repeater feature. */
virtual void enableSimplexRepeater(bool enable);
Interval gpsUpdatePeriod() const override;
void setGPSUpdatePeriod(Interval sec) override;
/** Returns @c true if the speaker is switched on during RX in simplex repeater mode,
* see @c simplexRepeaterEnabled. */
virtual bool monitorSimplexRepeaterEnabled() const;
/** Enables/disables the speaker during RX in simplex repeater mode. */
virtual void enableMonitorSimplexRepeater(bool enable);
bool showCurrentContact() const override;
void enableShowCurrentContact(bool enable) override;
bool keyToneLevelAdjustable() const override;
unsigned keyToneLevel() const override;
void setKeyToneLevel(unsigned level) override;
void setKeyToneLevelAdjustable() override;
bool knobLock() const override;
void enableKnobLock(bool enable) override;
bool keypadLock() const override;
void enableKeypadLock(bool enable) override;
bool sidekeysLock() const override;
void enableSidekeysLock(bool enable) override;
bool keyLockForced() const override;
void enableKeyLockForced(bool enable) override;
/** Returns the time-slot in simplex repeater mode. */
virtual AnytoneRepeaterSettingsExtension::TimeSlot simplexRepeaterTimeslot() const;
/** Sets the time-slot in simplex repeater mode. */
virtual void setSimplexRepeaterTimeslot(AnytoneRepeaterSettingsExtension::TimeSlot slot);
bool showLastHeard() const override;
void enableShowLastHeard(bool enable) override;
/** Returns the SMS format. */
virtual AnytoneDMRSettingsExtension::SMSFormat smsFormat() const;
/** Sets the SMS format. */
virtual void setSMSFormat(AnytoneDMRSettingsExtension::SMSFormat fmt);
bool gpsUnitsImperial() const override;
void enableGPSUnitsImperial(bool enable) override;
Frequency autoRepeaterMinFrequencyVHF() const override;
void setAutoRepeaterMinFrequencyVHF(Frequency Hz) override;
Frequency autoRepeaterMaxFrequencyVHF() const override;
void setAutoRepeaterMaxFrequencyVHF(Frequency Hz) override;
Frequency autoRepeaterMinFrequencyUHF() const override;
void setAutoRepeaterMinFrequencyUHF(Frequency Hz) override;
Frequency autoRepeaterMaxFrequencyUHF() const override;
void setAutoRepeaterMaxFrequencyUHF(Frequency Hz) override;
AnytoneAutoRepeaterSettingsExtension::Direction autoRepeaterDirectionB() const override;
void setAutoRepeaterDirectionB(AnytoneAutoRepeaterSettingsExtension::Direction dir) override;
/** If enabled, the FM ID is sent together with selected contact. */
virtual bool fmSendIDAndContact() const;
/** Enables/disables sending contact with FM ID. */
virtual void enableFMSendIDAndContact(bool enable);
bool defaultChannel() const override;
void enableDefaultChannel(bool enable) override;
unsigned defaultZoneIndexA() const override;
void setDefaultZoneIndexA(unsigned idx) override;
unsigned defaultZoneIndexB() const override;
void setDefaultZoneIndexB(unsigned idx) override;
bool defaultChannelAIsVFO() const override;
unsigned defaultChannelAIndex() const override;
void setDefaultChannelAIndex(unsigned idx) override;
void setDefaultChannelAToVFO() override;
bool defaultChannelBIsVFO() const override;
unsigned defaultChannelBIndex() const override;
void setDefaultChannelBIndex(unsigned idx) override;
void setDefaultChannelBToVFO() override;
bool keepLastCaller() const override;
void enableKeepLastCaller(bool enable) override;
/** Returns backlight duration during RX. */
virtual Interval rxBacklightDuration() const;
/** Sets the backlight duration during RX. */
virtual void setRXBacklightDuration(Interval sec);
/** Returns the stand-by background color. */
virtual AnytoneDisplaySettingsExtension::Color standbyBackgroundColor() const;
/** Sets the stand-by background color. */
virtual void setStandbyBackgroundColor(AnytoneDisplaySettingsExtension::Color color);
/** Returns the group-call hang time, if group call was dialed manually. */
virtual unsigned int manualDialedGroupCallHangTime() const;
/** Sets the group-call hang time, if the group call was dialed manually. */
virtual void setManualDialedGroupCallHangTime(unsigned int dur);
/** Returns the private-call hang time, if private call was dialed manually. */
virtual unsigned int manualDialedPrivateCallHangTime() const;
/** Sets the private-call hang time, if the private call was dialed manually. */
virtual void setManualDialedPrivateCallHangTime(unsigned int dur);
bool fromConfig(const Flags &flags, Context &ctx) override;
bool updateConfig(Context &ctx) override;
protected:
/** Some internal used offsets within the element. */
struct Offset: public D868UVCodeplug::GeneralSettingsElement::Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int idleChannelTone() { return 0x0000; }
static constexpr unsigned int transmitTimeout() { return 0x0004; }
static constexpr unsigned int language() { return 0x0005; }
static constexpr unsigned int vfoFrequencyStep() { return 0x0008; }
static constexpr unsigned int vfoModeB() { return 0x0015; }
static constexpr unsigned int vfoModeA() { return 0x0016; }
static constexpr unsigned int steType() { return 0x0017; }
static constexpr unsigned int steFrequency() { return 0x0018; }
static constexpr unsigned int groupCallHangTime() { return 0x0019; }
static constexpr unsigned int privateCallHangTime() { return 0x001a; }
static constexpr unsigned int preWaveDelay() { return 0x001b; }
static constexpr unsigned int wakeHeadPeriod() { return 0x001c; }
static constexpr unsigned int wfmChannelIndex() { return 0x001d; }
static constexpr unsigned int wfmVFOEnabled() { return 0x001e; }
static constexpr unsigned int dtmfToneDuration() { return 0x0023; }
static constexpr unsigned int manDown() { return 0x0024; }
static constexpr unsigned int wfmMonitor() { return 0x002b; }
static constexpr unsigned int tbstFrequency() { return 0x002e; }
static constexpr unsigned int proMode() { return 0x0034; }
static constexpr unsigned int enableKeyTone() { return 0x0036; }
static constexpr unsigned int filterOwnID() { return 0x0038; }
static constexpr unsigned int remoteStunKill() { return 0x003c; }
static constexpr unsigned int remoteMonitor() { return 0x003e; }
static constexpr unsigned int selectTXContact() { return 0x0040; }
static constexpr unsigned int monSlotMatch() { return 0x0049; }
static constexpr unsigned int monColorCodeMatch() { return 0x004a; }
static constexpr unsigned int monIDMatch() { return 0x004b; }
static constexpr unsigned int monTimeSlotHold() { return 0x004c; }
static constexpr unsigned int manDownDelay() { return 0x004f; }
static constexpr unsigned int fmCallHold() { return 0x0050; }
static constexpr unsigned int enableGPSMessage() { return 0x0053; }
static constexpr unsigned int maintainCallChannel() { return 0x006e; }
static constexpr unsigned int priorityZoneA() { return 0x006f; }
static constexpr unsigned int priorityZoneB() { return 0x0070; }
static constexpr unsigned int smsConfirm() { return 0x0071; }
static constexpr unsigned int simplexRepEnable() { return 0x00b1; }
static constexpr unsigned int gpsUpdatePeriod() { return 0x00b2; }
static constexpr unsigned int simplxRepSpeaker() { return 0x00b3; }
static constexpr unsigned int showContact() { return 0x00b4; }
static constexpr unsigned int keyToneLevel() { return 0x00b5; }
static constexpr Bit knobLock() { return {0x00b6, 0}; }
static constexpr Bit keypadLock() { return {0x00b6, 1}; }
static constexpr Bit sideKeyLock() { return {0x00b6, 3}; }
static constexpr Bit forceKeyLock() { return {0x00b6, 4}; }
static constexpr unsigned int simplxRepSlot() { return 0x00b7; }
static constexpr unsigned int showLastHeard() { return 0x00b8; }
static constexpr unsigned int smsFormat() { return 0x00b9; }
static constexpr unsigned int gpsUnits() { return 0x00ba; }
static constexpr unsigned int autoRepMinVHF() { return 0x00bc; }
static constexpr unsigned int autoRepMaxVHF() { return 0x00c0; }
static constexpr unsigned int autoRepMinUHF() { return 0x00c4; }
static constexpr unsigned int autoRepMaxUHF() { return 0x00c8; }
static constexpr unsigned int autoRepeaterDirB() { return 0x00cc; }
static constexpr unsigned int fmSendIDAndContact() { return 0x00cd; }
static constexpr unsigned int defaultChannels() { return 0x00ce; }
static constexpr unsigned int defaultZoneA() { return 0x00cf; }
static constexpr unsigned int defaultZoneB() { return 0x00d0; }
static constexpr unsigned int defaultChannelA() { return 0x00d1; }
static constexpr unsigned int defaultChannelB() { return 0x00d2; }
static constexpr unsigned int keepLastCaller() { return 0x00d3; }
static constexpr unsigned int rxBacklightDuration() { return 0x00d4; }
static constexpr unsigned int standbyBackground() { return 0x00d5; }
static constexpr unsigned int manGrpCallHangTime() { return 0x00d6; }
static constexpr unsigned int manPrvCallHangTime() { return 0x00d7; }
/// @endcond
};
};
/** Implements some settings extension for the BTECH DMR-6X2UV.
*
* Memory representation of the encoded settings element (size 0x0e0 bytes):
* @verbinclude dmr6x2uv_settingsextension.txt */
class ExtendedSettingsElement: public AnytoneCodeplug::ExtendedSettingsElement
{
protected:
/** Hidden Constructor. */
ExtendedSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ExtendedSettingsElement(uint8_t *ptr);
/** Returns the size of the element. */
static constexpr unsigned int size() { return 0x0030; }
/** Resets the general settings. */
void clear();
/** Returns @c true if the talker alias is sent. */
virtual bool sendTalkerAlias() const;
/** Enables/disables sending the talker alias. */
virtual void enableSendTalkerAlias(bool enable);
/** Returns the talker alias source. */
virtual AnytoneDMRSettingsExtension::TalkerAliasSource talkerAliasSource() const;
/** Sets the talker alias source. */
virtual void setTalkerAliasSource(AnytoneDMRSettingsExtension::TalkerAliasSource mode);
/** Returns the talker alias encoding. */
virtual AnytoneDMRSettingsExtension::TalkerAliasEncoding talkerAliasEncoding() const;
/** Sets the talker alias encoding. */
virtual void setTalkerAliasEncoding(AnytoneDMRSettingsExtension::TalkerAliasEncoding encoding);
/** Returns the font color. */
virtual AnytoneDisplaySettingsExtension::Color fontColor() const;
/** Sets the font color. */
virtual void setFontColor(AnytoneDisplaySettingsExtension::Color color);
/** Returns @c true if the custom channel background is enabled. */
virtual bool customChannelBackgroundEnabled() const;
/** Enables/disables the custom channel background. */
virtual void enableCustomChannelBackground(bool enable);
/** Returns @c true if auto roaming is enabled. */
virtual bool autoRoamingEnabled() const;
/** Enables/disables auto roaming. */
virtual void enableAutoRoaming(bool enable);
/** Returns @c true if repeater check is enabled. */
virtual bool repeaterRangeCheckEnabled() const;
/** Enables/disables repeater check. */
virtual void enableRepeaterRangeCheck(bool enable);
/** Returns the number of times, the repeater out-of-range reminder is shown (1-10). */
virtual unsigned int repeaterCheckNumNotifications() const;
/** Sets the number of times, the repeater out-of-range reminder is shown (1-10). */
virtual void setRepeaterCheckNumNotifications(unsigned int n);
/** Returns the repeater check interval in seconds (5-50s). */
virtual Interval repeaterRangeCheckInterval() const;
/** Sets the repeater check interval in seconds (5-50s). */
virtual void setRepeaterRangeCheckInterval(Interval intv);
/** Returns the repeater out-of-range alert type. */
virtual AnytoneRoamingSettingsExtension::OutOfRangeAlert repeaterOutOfRangeAlert() const;
/** Sets the repeater out-of-range alert type. */
virtual void setRepeaterOutOfRangeAlert(AnytoneRoamingSettingsExtension::OutOfRangeAlert alert);
/** Returns the number of times, a repeater reconnection is tried (3-5). */
virtual unsigned int repeaterRangeCheckCount() const;
/** Sets the number of times, a repeater reconnection is tried (3-5). */
virtual void setRepeaterRangeCheckCount(unsigned int n);
/** Returns the roaming zone index. */
virtual unsigned int defaultRoamingZoneIndex() const;
/** Sets the roaming zone index. */
virtual void setDefaultRoamingZoneIndex(unsigned int index);
/** Returns the condition to start roaming. */
virtual AnytoneRoamingSettingsExtension::RoamStart roamingStartCondition() const;
/** Sets the condition to start roaming. */
virtual void setRoamingStartCondition(AnytoneRoamingSettingsExtension::RoamStart cond);
/** Returns the auto-roaming interval in minutes (1-256). */
virtual Interval autoRoamPeriod() const;
/** Sets the auto-roaming interval in minutes (1-256). */
virtual void setAutoRoamPeriod(Interval minutes);
/** Returns the effective roaming waiting time in seconds (0-30s). */
virtual Interval autoRoamDelay() const;
/** Sets the effective roaming waiting time in seconds (0-30s). */
virtual void setAutoRoamDelay(Interval sec);
/** Returns the roaming return condition. */
virtual AnytoneRoamingSettingsExtension::RoamStart roamingReturnCondition() const;
/** Sets the roaming return condition. */
virtual void setRoamingReturnCondition(AnytoneRoamingSettingsExtension::RoamStart cond);
/** Returns the mute timer in minutes. */
virtual Interval muteTimer() const;
/** Sets the mute timer in minutes. */
virtual void setMuteTimer(Interval minutes);
/** Returns the encryption type. */
virtual AnytoneDMRSettingsExtension::EncryptionType encryptionType() const;
/** Sets the encryption type. */
virtual void setEncryptionType(AnytoneDMRSettingsExtension::EncryptionType type);
AnytoneDisplaySettingsExtension::Color zoneANameColor() const;
void setZoneANameColor(AnytoneDisplaySettingsExtension::Color color);
AnytoneDisplaySettingsExtension::Color zoneBNameColor() const;
void setZoneBNameColor(AnytoneDisplaySettingsExtension::Color color);
/** Returns the name color for channel A. */
virtual AnytoneDisplaySettingsExtension::Color channelANameColor() const;
/** Sets the name color for channel A. */
virtual void setChannelANameColor(AnytoneDisplaySettingsExtension::Color color);
AnytoneDisplaySettingsExtension::Color channelBNameColor() const;
void setChannelBNameColor(AnytoneDisplaySettingsExtension::Color color);
bool fromConfig(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
bool updateConfig(Context &ctx, const ErrorStack &err=ErrorStack());
bool linkConfig(Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for entries. */
struct Limit {
/// Out of range reminder count limits.
static constexpr IntRange repRangeReminder() { return {1, 10}; }
/// Repeater range check interval limits.
static constexpr TimeRange rangeCheckInterval() {
return TimeRange{Interval::fromSeconds(1), Interval::fromSeconds(50)};
}
/// Repeater reconnection count limits.
static constexpr IntRange repeaterReconnections() { return {3,5}; }
/// Auto-roaming interval limits.
static constexpr TimeRange autoRoamingInterval() {
return TimeRange{Interval::fromMinutes(1), Interval::fromMinutes(256)};
}
/// Auto-roaming delay limits.
static constexpr TimeRange autoRoamDelay() {
return TimeRange{Interval::fromSeconds(0), Interval::fromSeconds(30)};
}
/// Mute-timer limits.
static constexpr TimeRange muteTimer() {
return TimeRange{Interval::fromMinutes(1), Interval::fromMinutes(256)};
}
};
protected:
/** Some internal offset within the codeplug element. */
struct Offset {
/// @cond DO_NOT_DOCUEMNT
static constexpr unsigned int sendTalkerAlias() { return 0x0000; }
static constexpr unsigned int talkerAliasDisplay() { return 0x0001; }
static constexpr unsigned int talkerAliasEncoding() { return 0x0002; }
static constexpr unsigned int fontColor() { return 0x0003; }
static constexpr unsigned int customChannelBackground() { return 0x0004; }
static constexpr unsigned int defaultRoamingZone() { return 0x0005; }
static constexpr unsigned int roaming() { return 0x0006; }
static constexpr unsigned int repRangeCheck() { return 0x0007; }
static constexpr unsigned int repRangeAlert() { return 0x0008; }
static constexpr unsigned int repRangeReminder() { return 0x0009; }
static constexpr unsigned int rangeCheckInterval() { return 0x000a; }
static constexpr unsigned int rangeCheckCount() { return 0x000b; }
static constexpr unsigned int roamStartCondition() { return 0x000c; }
static constexpr unsigned int autoRoamPeriod() { return 0x000d; }
static constexpr unsigned int autoRoamDelay() { return 0x000e; }
static constexpr unsigned int roamReturnCondition() { return 0x000f; }
static constexpr unsigned int muteDelay() { return 0x0010; }
static constexpr unsigned int encryptionType() { return 0x0011; }
static constexpr unsigned int zoneANameColor() { return 0x0012; }
static constexpr unsigned int zoneBNameColor() { return 0x0013; }
static constexpr unsigned int channelANameColor() { return 0x0014; }
static constexpr unsigned int channelBNameColor() { return 0x0015; }
/// @endcond
};
};
/** Implements the channel element for the BTECH DMR-6X2UV.
* Extends the AnytoneCodeplug::ChannelElement by the device specific features, like multiple
* scan lists associated with the channel.
*
* Memory representation of the encoded channel element (size 0x040 bytes):
* @verbinclude dmr6x2uv_channel.txt */
class ChannelElement: public AnytoneCodeplug::ChannelElement
{
public:
/** Possible PTT modes for FM APRS. */
enum class FMAPRSPTTMode {
Off = 0, Start = 1, End = 2
};
/** Possible APRS report types. */
enum class APRSType{
Off = 0, FM = 1, DMR = 2
};
/** Possible encryption types. */
enum class DMREncryptionType {
Basic = 0, Enhanced = 1
};
protected:
/** Hidden constructor. */
ChannelElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
ChannelElement(uint8_t *ptr);
/** Returns @c true, if an AES encryption key index is set. */
bool hasAESEncryptionKeyIndex() const;
/** Returns the AES encryption key index.
* The index is 0-based. */
unsigned int aesEncryptionKeyIndex() const;
/** Sets the AES encryption key index. */
void setAESEncryptionKeyIndex(unsigned int index);
/** Clears the AES encryption key index. */
void clearAESEncryptionKeyIndex();
/** Returns the DMR encryption type. */
DMREncryptionType dmrEncryptionType() const;
/** Sets the DMR encryption type. */
void setDMREncryptionType(DMREncryptionType type);
/** Returns @c true, if an DMR encryption key index is set. */
bool hasDMREncryptionKeyIndex() const;
/** Returns the DMR encryption key index.
* The index is 0-based. */
unsigned int dmrEncryptionKeyIndex() const;
/** Sets the DMR encryption key index. */
void setDMREncryptionKeyIndex(unsigned int index);
/** Clears the DMR encryption key index. */
void clearDMREncryptionKeyIndex();
/** Returns @c true, if the first scan list index is set. */
bool hasScanListIndex() const;
/** Returns the first scan list index (0-based). */
unsigned scanListIndex() const;
/** Sets the first scan list index (0-based). */
void setScanListIndex(unsigned idx);
/** Clears the first scan list index. */
void clearScanListIndex();
/** Returns @c true, if the n-th scan list index is set (n=0,...,7). */
virtual bool hasScanListIndex(unsigned int n) const;
/** Returns the n-th scan list index (0-based, n=0,...,7). */
virtual unsigned scanListIndex(unsigned int n) const;
/** Sets the n-th scan list index (0-based, n=0,...,7). */
virtual void setScanListIndex(unsigned int n, unsigned idx);
/** Clears the n-th scan list index (n=0,...,7). */
virtual void clearScanListIndex(unsigned int n);
/** Returns @c true if roaming is enabled for this channel. */
virtual bool roamingEnabled() const;
/** Enables/disables roaming. */
virtual void enableRoaming(bool enable);
/** Returns @c true, if ranging is enabled. */
virtual bool ranging() const;
/** Enables/disables ranging. */
virtual void enableRanging(bool enable);
/** Returns the DMR APRS report channel index. */
virtual unsigned int dmrAPRSChannelIndex() const;
/** Sets the DMR APRS report channel index. */
virtual void setDMRAPRSChannelIndex(unsigned int idx);
/** Returns @c true, if the reception of DMR APRS messages is enabled. */
virtual bool dmrAPRSRXEnabled() const;
/** Enables/disables the reception of DMR APRS messages. */
virtual void enableDMRARPSRX(bool enable);
/** Returns true, if the position is reported via DMR APRS on PTT. */
virtual bool dmrAPRSPTTEnabled() const;
/** Enables/disables reporting the position via DMR APRS on PTT. */
virtual void enableDMRAPRSPTT(bool enable);
/** Returns the FM APRS PTT mode. */
virtual FMAPRSPTTMode fmAPRSPTTMode() const;
/** Sets the FM APRS PTT mode. */
virtual void setFMAPRSPTTMode(FMAPRSPTTMode mode);
/** Returns the APRS type. */
virtual APRSType aprsType() const;
/** Sets the APRS type. */
virtual void setAPRSType(APRSType aprstype);
bool linkChannelObj(Channel *c, Context &ctx) const;
bool fromChannelObj(const Channel *c, Context &ctx);
public:
/** Some limits of this element. */
struct Limit {
/// Maximum number of scan list indices.
static constexpr unsigned int scanListIndices() { return 8; }
};
protected:
/// @cond DO_NOT_DOCUMENT
struct Offset: public AnytoneCodeplug::ChannelElement::Offset {
static constexpr unsigned int aesEncryptionKeyIndex() { return 0x0013; }
static constexpr Bit roaming() { return {0x001b, 2}; }
static constexpr Bit ranging() { return {0x001b, 0}; }
static constexpr Bit dmrEncryptionType() { return {0x0021, 6}; }
static constexpr unsigned int dmrEncryptionKeyIndex() { return 0x0022; }
static constexpr unsigned int scanListIndices() { return 0x0036; }
static constexpr unsigned int betweenScanListIndices() { return 0x0001; }
static constexpr unsigned int dmrAPRSChannelIndex() { return 0x003e; }
static constexpr Bit dmrAPRSRXEnable() { return {0x003f, 5}; }
static constexpr Bit dmrAPRSPTTEnable() { return {0x003f, 4}; }
static constexpr Bit fmAPRSPTTMode() { return {0x003f, 2}; }
static constexpr Bit aprsType() { return {0x003f, 0}; }
};
/// @endcond
};
/** Starting from FW version 2.21, all devices encode an channel settings extension element
* at an offset 0x2000 to the original channel. Also the size of the extension element is
* identical to the channel element itself. This is weird. Anyway. This class encodes/decodes
* these settings.
*
* This implementation is compatible with firmware version 2.21 */
class ChannelExtensionElement: public Codeplug::Element
{
protected:
/** Hidden constructor. */
ChannelExtensionElement(uint8_t *ptr, size_t size);
public:
/** Default constructor. */
ChannelExtensionElement(uint8_t *ptr);
/** The size of the element. */
static constexpr unsigned int size() { return ChannelElement::size(); }
/** Resets the channel extension. */
void clear();
/** Returns @c true, if the channel has an ARC4 key index assigned. */
virtual bool hasARC4KeyIndex() const;
/** Returns the 0-based ARC4 key index. */
virtual unsigned int arc4KeyIndex() const;
/** Sets the ARC4 key index. */
virtual void setARC4KeyIndex(unsigned int idx);
/** Clears the ARC4 key index. */
virtual void clearARC4KeyIndex();
/** Links a previously created channel object. */
virtual bool linkChannelObj(Channel *c, Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Encodes the given channel object. */
virtual bool fromChannelObj(const Channel *c, Context &ctx, const ErrorStack &err=ErrorStack());
protected:
/** Some internal used offsets. */
struct Offset: public Element::Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int arc4KeyIndex() { return 0x0000; }
/// @endcond
};
};
/** Represents the APRS settings within the binary DMR-6X2UV codeplug.
*
* Memory layout of APRS settings (size 0x00a0 bytes):
* @verbinclude dmr6x2uv_aprssetting.txt
*/
class APRSSettingsElement: public Element
{
protected:
/** Hidden constructor. */
APRSSettingsElement(uint8_t *ptr, unsigned size);
/** Possible settings for the FM APRS subtone type. */
enum class SignalingType {
Off=0, CTCSS=1, DCS=2
};
public:
/** Constructor. */
explicit APRSSettingsElement(uint8_t *ptr);
/** The size of the element. */
static constexpr unsigned int size() { return 0x00a0; }
/** Resets the settings. */
void clear();
bool isValid() const;
/** Returns the FM APRS frequency. */
virtual Frequency fmFrequency() const;
/** Sets the FM APRS frequency. */
virtual void setFMFrequency(Frequency f);
/** Returns the TX delay in ms. */
virtual Interval fmTXDelay() const;
/** Sets the TX delay in ms. */
virtual void setFMTXDelay(const Interval intv);
/** Returns the sub tone settings. */
virtual SelectiveCall txTone() const;
/** Sets the sub tone settings. */
virtual void setTXTone(const SelectiveCall &code);
/** Returns the manual TX interval in seconds. */
virtual Interval manualTXInterval() const;
/** Sets the manual TX interval in seconds. */
virtual void setManualTXInterval(Interval sec);
/** Returns @c true if the auto transmit is enabled. */
virtual bool autoTX() const;
/** Returns the auto TX interval in seconds. */
virtual Interval autoTXInterval() const;
/** Sets the auto TX interval in seconds. */
virtual void setAutoTXInterval(Interval sec);
/** Disables auto tx. */
virtual void disableAutoTX();
/** Returns @c true if a fixed location is send. */
virtual bool fixedLocationEnabled() const;
/** Returns the fixed location send. */
virtual QGeoCoordinate fixedLocation() const;
/** Sets the fixed location to send. */
virtual void setFixedLocation(QGeoCoordinate &loc);
/** Disables sending a fixed location. */
virtual void disableFixedLocation();
/** Returns the destination call. */
virtual QString destination() const;
/** Returns the destination SSID. */
virtual unsigned destinationSSID() const;
/** Sets the destination call & SSID. */
virtual void setDestination(const QString &call, unsigned ssid);
/** Returns the source call. */
virtual QString source() const;
/** Returns the source SSID. */
virtual unsigned sourceSSID() const;
/** Sets the source call & SSID. */
virtual void setSource(const QString &call, unsigned ssid);
/** Returns the path string. */
virtual QString path() const;
/** Sets the path string. */
virtual void setPath(const QString &path);
/** Returns the APRS icon. */
virtual APRSSystem::Icon icon() const;
/** Sets the APRS icon. */
virtual void setIcon(APRSSystem::Icon icon);
/** Returns the transmit power. */
virtual Channel::Power power() const;
/** Sets the transmit power. */
virtual void setPower(Channel::Power power);
/** Returns the pre-wave delay in ms. */
virtual Interval fmPreWaveDelay() const;
/** Sets the pre-wave delay in ms. */
virtual void setFMPreWaveDelay(Interval ms);
/** Returns @c true if the channel points to the current/selected channel. */
virtual bool dmrChannelIsSelected(unsigned n) const;
/** Returns the digital channel index for the n-th system. */
virtual unsigned dmrChannelIndex(unsigned n) const;
/** Sets the digital channel index for the n-th system. */
virtual void setDMRChannelIndex(unsigned n, unsigned idx);
/** Sets the channel to the current/selected channel. */
virtual void setDMRChannelSelected(unsigned n);
/** Returns the destination contact for the n-th system. */
virtual unsigned dmrDestination(unsigned n) const;
/** Sets the destination contact for the n-th system. */
virtual void setDMRDestination(unsigned n, unsigned idx);
/** Returns the call type for the n-th system. */
virtual DMRContact::Type dmrCallType(unsigned n) const;
/** Sets the call type for the n-th system. */
virtual void setDMRCallType(unsigned n, DMRContact::Type type);
/** Returns @c true if the n-th system overrides the channel time-slot. */
virtual bool dmrTimeSlotOverride(unsigned n);
/** Returns the time slot if overridden (only valid if @c timeSlot returns true). */
virtual DMRChannel::TimeSlot dmrTimeSlot(unsigned n) const;
/** Overrides the time slot of the n-th selected channel. */
virtual void setDMRTimeSlot(unsigned n, DMRChannel::TimeSlot ts);
/** Clears the time-slot override. */
virtual void clearDMRTimeSlotOverride(unsigned n);
/** Returns @c true if the roaming is enabled. */
virtual bool dmrRoaming() const;
/** Enables/disables roaming. */
virtual void enableDMRRoaming(bool enable);
/** Returns the repeater activation delay in ms. */
virtual Interval dmrPreWaveDelay() const;
/** Sets the repeater activation delay in ms. */
virtual void setDMRPreWaveDelay(Interval ms);
/** Configures this APRS system from the given generic config. */
virtual bool fromFMAPRSSystem(const APRSSystem *sys, Context &ctx,
const ErrorStack &err=ErrorStack());
/** Constructs a generic APRS system configuration from this APRS system. */
virtual APRSSystem *toFMAPRSSystem();
/** Links the transmit channel within the generic APRS system based on the transmit frequency
* defined within this APRS system. */
virtual bool linkFMAPRSSystem(APRSSystem *sys, Context &ctx);
/** Constructs all GPS system from the generic configuration. */
virtual bool fromDMRAPRSSystems(Context &ctx);
/** Encodes the given GPS system. */
virtual bool fromDMRAPRSSystemObj(unsigned int idx, GPSSystem *sys, Context &ctx);
/** Constructs a generic GPS system from the idx-th encoded GPS system. */
virtual GPSSystem *toDMRAPRSSystemObj(int idx) const;
/** Links the specified generic GPS system. */
virtual bool linkDMRAPRSSystem(int idx, GPSSystem *sys, Context &ctx) const;
public:
/** Some static limits for this element. */
struct Limit {
/// Maximum length of call signs.
static constexpr unsigned int callLength() { return 0x0006; }
/// Maximum length of the repeater path string.
static constexpr unsigned int pathLength() { return 0x0020; }
/// Maximum number of DMR APRS systems.
static constexpr unsigned int dmrSystems() { return 0x0008; }
};
protected:
/** Internal used offsets within the codeplug element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int fmFrequency() { return 0x0001; }
static constexpr unsigned int fmTXDelay() { return 0x0005; }
static constexpr unsigned int fmSigType() { return 0x0006; }
static constexpr unsigned int fmCTCSS() { return 0x0007; }
static constexpr unsigned int fmDCS() { return 0x0008; }
static constexpr unsigned int manualTXInterval() { return 0x000a; }
static constexpr unsigned int autoTXInterval() { return 0x000b; }
static constexpr unsigned int fmTXMonitor() { return 0x000c; }
static constexpr unsigned int fixedLocation() { return 0x000d; }
static constexpr unsigned int fixedLatDeg() { return 0x000e; }
static constexpr unsigned int fixedLatMin() { return 0x000f; }
static constexpr unsigned int fixedLatSec() { return 0x0010; }
static constexpr unsigned int fixedLatSouth() { return 0x0011; }
static constexpr unsigned int fixedLonDeg() { return 0x0012; }
static constexpr unsigned int fixedLonMin() { return 0x0013; }
static constexpr unsigned int fixedLonSec() { return 0x0014; }
static constexpr unsigned int fixedLonWest() { return 0x0015; }
static constexpr unsigned int destinationCall() { return 0x0016; }
static constexpr unsigned int destinationSSID() { return 0x001c; }
static constexpr unsigned int sourceCall() { return 0x001d; }
static constexpr unsigned int sourceSSID() { return 0x0023; }
static constexpr unsigned int path() { return 0x0024; }
static constexpr unsigned int symbolTable() { return 0x0039; }
static constexpr unsigned int symbol() { return 0x003a; }
static constexpr unsigned int fmPower() { return 0x003b; }
static constexpr unsigned int fmPrewaveDelay() { return 0x003c; }
static constexpr unsigned int dmrChannelIndices() { return 0x0040; }
static constexpr unsigned int betweenDMRChannelIndices() { return 0x0002; }
static constexpr unsigned int dmrDestinations() { return 0x0050; }
static constexpr unsigned int betweenDMRDestinations() { return 0x0004; }
static constexpr unsigned int dmrCallTypes() { return 0x0070; }
static constexpr unsigned int betweenDMRCallTypes() { return 0x0001; }
static constexpr unsigned int roamingSupport() { return 0x0078; }
static constexpr unsigned int dmrTimeSlots() { return 0x0079; }
static constexpr unsigned int betweenDMRTimeSlots() { return 0x0001; }
static constexpr unsigned int dmrPrewaveDelay() { return 0x0081; }
/// @endcond
};
};
/** Reuse roaming channel bitmap from D878UV. */
typedef D878UVCodeplug::RoamingChannelBitmapElement RoamingChannelBitmapElement ;
/** Reuse roaming channel from D878UV. */
typedef D878UVCodeplug::RoamingChannelElement RoamingChannelElement;
/** Reuse roaming zone bitmap from D878UV. */
typedef D878UVCodeplug::RoamingZoneBitmapElement RoamingZoneBitmapElement;
/** Reuse roaming zone from D878UV. */
typedef D878UVCodeplug::RoamingZoneElement RoamingZoneElement;
/** Reuse AES encryption key from D878UV. */
typedef D878UVCodeplug::AESEncryptionKeyElement AESEncryptionKeyElement;
/** Reuse ARC4 encryption key from D878UV. */
typedef D878UVCodeplug::ARC4EncryptionKeyElement ARC4EncryptionKeyElement;
public:
/** Hidden constructor. */
explicit DMR6X2UVCodeplug(const QString &label, QObject *parent=nullptr);
public:
/** Empty constructor. */
explicit DMR6X2UVCodeplug(QObject *parent=nullptr);
Config *preprocess(Config *config, const ErrorStack &err) const;
protected:
bool allocateBitmaps();
void setBitmaps(Context &ctx);
void allocateForDecoding();
void allocateForEncoding();
bool encodeElements(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
bool createElements(Context &ctx, const ErrorStack &err=ErrorStack());
bool linkElements(Context &ctx, const ErrorStack &err=ErrorStack());
void allocateGeneralSettings();
bool encodeGeneralSettings(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
bool decodeGeneralSettings(Context &ctx, const ErrorStack &err=ErrorStack());
bool linkGeneralSettings(Context &ctx, const ErrorStack &err=ErrorStack());
void allocateChannels();
bool encodeChannels(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
bool createChannels(Context &ctx, const ErrorStack &err=ErrorStack());
bool linkChannels(Context &ctx, const ErrorStack &err=ErrorStack());
void allocateGPSSystems();
bool encodeGPSSystems(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
bool createGPSSystems(Context &ctx, const ErrorStack &err=ErrorStack());
bool linkGPSSystems(Context &ctx, const ErrorStack &err=ErrorStack());
/** Allocates memory to store all roaming channels and zones. */
virtual void allocateRoaming();
/** Encodes the roaming channels and zones. */
virtual bool encodeRoaming(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
/** Creates roaming channels and zones from codeplug. */
virtual bool createRoaming(Context &ctx, const ErrorStack &err=ErrorStack());
/** Links roaming channels and zones. */
virtual bool linkRoaming(Context &ctx, const ErrorStack &err=ErrorStack());
/** Allocates memory to encode/decode AES keys. */
virtual void allocateAESKeys();
/** Encode all AES keys. */
virtual bool encodeAESKeys(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
/** Decode AES keys from the codeplug. */
virtual bool createAESKeys(Context &ctx, const ErrorStack &err=ErrorStack());
/** Allocates memory to encode/decode ARC4 keys. */
virtual void allocateARC4Keys();
/** Encode all ARC4 keys. */
virtual bool encodeARC4Keys(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
/** Decode ARC4 keys from the codeplug. */
virtual bool createARC4Keys(Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for the codeplug. */
struct Limit : public D868UVCodeplug::Limit {
/// Maximum length of the FM APRS message
static constexpr unsigned int fmAPRSMessage() { return 60; }
/// Maximum number of roaming channels.
static constexpr unsigned int roamingChannels() { return 250; }
/// Maximum number of roaming zones.
static constexpr unsigned int roamingZones() { return 64; }
/// Maximum number of AES encryption keys.
static constexpr unsigned int aesEncryptionKeys() { return 254; }
/// Maximum number of ARC4 encryption keys.
static constexpr unsigned int arc4EncryptionKeys() { return 254; }
};
protected:
/** Some internal used offsets within the codeplug. */
struct Offset: public D868UVCodeplug::Offset {
///@cond DO_NOT_DOCUMENT
static constexpr unsigned int toChannelExtension() { return 0x00002000; }
static constexpr unsigned int roamingChannelBitmap() { return 0x01042000; }
static constexpr unsigned int roamingChannels() { return 0x01040000; }
static constexpr unsigned int roamingZoneBitmap() { return 0x01042080; }
static constexpr unsigned int roamingZones() { return 0x01043000; }
static constexpr unsigned int fmAPRSMessage() { return 0x02501200; }
static constexpr unsigned int fmAPRSFrequencyNames() { return 0x02502000; }
static constexpr unsigned int settingsExtension() { return 0x02501400; }
static constexpr unsigned int aesEncryptionKeys() { return 0x025c1000; }
static constexpr unsigned int arc4EncryptionKeys() { return 0x025c5000; }
/// @endcond
};
/** Some internal used sizes. */
struct Size: public D868UVCodeplug::Size {
///@cond DO_NOT_DOCUMENT
static constexpr unsigned int fmAPRSMessage() { return 0x00000040; }
/// @endcond
};
};
#endif // DMR6X2UVCODEPLUG_HH
|