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 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
|
#ifndef RADIODDITYCODEPLUG_HH
#define RADIODDITYCODEPLUG_HH
#include "codeplug.hh"
#include "signaling.hh"
#include "channel.hh"
#include "contact.hh"
#include "radioddity_extensions.hh"
#include "ranges.hh"
class DMRContact;
class Zone;
class RXGroupList;
class ScanList;
/** Base class of all Radioddity codeplugs. This class implements the majority of all codeplug
* elements present in all Radioddity codeplugs (also some derivatives like OpenGD77). This eases
* the support of several Radioddity radios, as only the differences in the codeplug to this base
* class must be implemented.
*
* @ingroup radioddity */
class RadioddityCodeplug : public Codeplug
{
Q_OBJECT
public:
/** Implements the base for all Radioddity channel encodings.
*
* Memory layout of encoded channel:
* @verbinclude radioddity_channel.txt */
class ChannelElement: public Codeplug::Element
{
public:
/** Possible channel types. */
enum Mode {
MODE_ANALOG = 0, ///< Analog channel, aka FM.
MODE_DIGITAL = 1 ///< Digital channel, aka DMR.
};
/** Possible admit criteria. */
enum Admit {
ADMIT_ALWAYS = 0, ///< Allow always.
ADMIT_CH_FREE = 1, ///< Allow TX on channel free.
ADMIT_COLOR = 2 ///< Allow TX on matching color-code.
};
/** Possible privacy groups, not used in ham radio. */
enum PrivacyGroup {
PRIVGR_NONE = 0, ///< No privacy group, default.
PRIVGR_53474C39 = 1 ///< Privacy group 53474C39 (wtf?).
};
protected:
/** Constructs a channel from the given memory. */
ChannelElement(uint8_t *ptr, size_t size);
public:
/** Constructs a channel from the given memory. */
explicit ChannelElement(uint8_t *ptr);
/** Destructor. */
virtual ~ChannelElement();
/** The size of the channel. */
static constexpr unsigned int size() { return 0x0038; }
/** Resets the channel. */
virtual void clear();
/** Returns the name of the channel. */
virtual QString name() const;
/** Sets the name of the channel. */
virtual void setName(const QString &n);
/** Returns the RX frequency of the channel. */
virtual uint32_t rxFrequency() const;
/** Sets the RX frequency of the channel. */
virtual void setRXFrequency(uint32_t freq);
/** Returns the TX frequency of the channel. */
virtual uint32_t txFrequency() const;
/** Sets the TX frequency of the channel. */
virtual void setTXFrequency(uint32_t freq);
/** Returns the channel mode. */
virtual Mode mode() const;
/** Sets the channel mode. */
virtual void setMode(Mode mode);
/** Returns the TX timeout in seconds. A value of 0 means disabled. */
virtual unsigned txTimeOut() const;
/** Sets the TX timeout in seconds. Setting it to 0 disables the timeout. */
virtual void setTXTimeOut(unsigned tot);
/** Returns the transmit time-out re-key delay in seconds. */
virtual unsigned txTimeOutRekeyDelay() const;
/** Sets the transmit time-out re-key delay in seconds. */
virtual void setTXTimeOutRekeyDelay(unsigned delay);
/** Returns the admit criterion. */
virtual Admit admitCriterion() const;
/** Sets the admit criterion. */
virtual void setAdmitCriterion(Admit admit);
/** Returns @c true if a scan list is set. */
virtual bool hasScanList() const;
/** Returns the scan list index (+1). */
virtual unsigned scanListIndex() const;
/** Sets the scan list index (+1). */
virtual void setScanListIndex(unsigned index);
/** Returns the RX subtone. */
virtual SelectiveCall rxTone() const;
/** Sets the RX subtone. */
virtual void setRXTone(const SelectiveCall &code);
/** Returns the TX subtone. */
virtual SelectiveCall txTone() const;
/** Sets the TX subtone. */
virtual void setTXTone(const SelectiveCall &code);
/** Returns TX signaling index (+1). */
virtual unsigned txSignalingIndex() const;
/** Sets TX signaling index (+1). */
virtual void setTXSignalingIndex(unsigned index);
/** Returns RX signaling index (+1). */
virtual unsigned rxSignalingIndex() const;
/** Sets RX signaling index (+1). */
virtual void setRXSignalingIndex(unsigned index);
/** Returns the privacy group. */
virtual PrivacyGroup privacyGroup() const;
/** Sets the privacy group. */
virtual void setPrivacyGroup(PrivacyGroup grp);
/** Returns the TX color code. */
virtual unsigned txColorCode() const;
/** Sets the TX color code. */
virtual void setTXColorCode(unsigned cc);
/** Returns @c true if a group list is set. */
virtual bool hasGroupList() const;
/** Returns the group-list index (+1). */
virtual unsigned groupListIndex() const;
/** Sets the group-list index (+1). */
virtual void setGroupListIndex(unsigned index);
/** Returns the RX color code. */
virtual unsigned rxColorCode() const;
/** Sets the RX color code. */
virtual void setRXColorCode(unsigned cc);
/** Returns @c true if an emergency system is set. */
virtual bool hasEmergencySystem() const;
/** Returns the emergency system index (+1). */
virtual unsigned emergencySystemIndex() const;
/** Sets the emergency system index (+1). */
virtual void setEmergencySystemIndex(unsigned index);
/** Returns @c true if a TX contact is set. */
virtual bool hasContact() const;
/** Returns the transmit contact index (+1). */
virtual unsigned contactIndex() const;
/** Sets the transmit contact index (+1). */
virtual void setContactIndex(unsigned index);
/** Returns @c true if data-call-confirm is enabled. */
virtual bool dataCallConfirm() const;
/** Enables/disables data-call-confirm. */
virtual void enableDataCallConfirm(bool enable);
/** Returns @c true if emergency alarm ACK is enabled. */
virtual bool emergencyAlarmACK() const;
/** Enables/disables emergency alarm ACK. */
virtual void enableEmergencyAlarmACK(bool enable);
/** Returns @c true if private-call-confirm is enabled. */
virtual bool privateCallConfirm() const;
/** Enables/disables private-call-confirm. */
virtual void enablePrivateCallConfirm(bool enable);
/** Returns @c true if privacy is enabled. */
virtual bool privacyEnabled() const;
/** Enables/disables privacy. */
virtual void enablePrivacy(bool enable);
/** Returns the time slot of the channel. */
virtual DMRChannel::TimeSlot timeSlot() const;
/** Sets the time slot of the channel. */
virtual void setTimeSlot(DMRChannel::TimeSlot ts);
/** Returns @c true if the dual-capacity direct mode is enabled. */
virtual bool dualCapacityDirectMode() const;
/** Enables/disables the dual-capacity direct mode. */
virtual void enableDualCapacityDirectMode(bool enable);
/** Returns @c true if non-STE is frequency (?!). */
virtual bool nonSTEFrequency() const;
/** Enables/disables non-STE is frequency (?!). */
virtual void enableNonSTEFrequency(bool enable);
/** Returns the bandwidth. */
virtual FMChannel::Bandwidth bandwidth() const;
/** Sets the bandwidth. */
virtual void setBandwidth(FMChannel::Bandwidth bw);
/** Returns @c true if RX only is enabled. */
virtual bool rxOnly() const;
/** Enables/disables RX only. */
virtual void enableRXOnly(bool enable);
/** Returns @c true if talkaround is enabled. */
virtual bool talkaround() const;
/** Enables/disables talkaround. */
virtual void enableTalkaround(bool enable);
/** Returns @c true if VOX is enabled. */
virtual bool vox() const;
/** Enables/disables VOX. */
virtual void enableVOX(bool enable);
/** Returns the power setting of the channel. */
virtual Channel::Power power() const;
/** Sets the power setting of the channel. */
virtual void setPower(Channel::Power pwr);
/** Constructs a generic @c Channel object from the codeplug channel. */
virtual Channel *toChannelObj(Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Links a previously constructed channel to the rest of the configuration. */
virtual bool linkChannelObj(Channel *c, Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Initializes this codeplug channel from the given generic configuration. */
virtual bool fromChannelObj(const Channel *c, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for this element. */
struct Limit {
/** The maximum length of the name. */
static constexpr unsigned int nameLength() { return 16; }
};
protected:
/** Some internal offsets within the channel element. */
struct Offset: public Element::Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int name() { return 0x0000; }
static constexpr unsigned int rxFrequency() { return 0x0010; }
static constexpr unsigned int txFrequency() { return 0x0014; }
static constexpr unsigned int mode() { return 0x0018; }
static constexpr unsigned int txTimeout() { return 0x001b; }
static constexpr unsigned int txTimeoutRekeyDelay() { return 0x001c; }
static constexpr unsigned int admitCriterion() { return 0x001d; }
static constexpr unsigned int scanList() { return 0x001f; }
static constexpr unsigned int rxTone() { return 0x0020; }
static constexpr unsigned int txTone() { return 0x0022; }
static constexpr unsigned int txSignaling() { return 0x0025; }
static constexpr unsigned int rxSignaling() { return 0x0027; }
static constexpr unsigned int privacyGroup() { return 0x0029; }
static constexpr unsigned int txColorCode() { return 0x002a; }
static constexpr unsigned int groupList() { return 0x002b; }
static constexpr unsigned int rxColorCode() { return 0x002c; }
static constexpr unsigned int emergencySystem() { return 0x002d; }
static constexpr unsigned int transmitContact() { return 0x002e; }
static constexpr Bit dataCallConfirm() { return {0x0030, 7}; }
static constexpr Bit emergencyAlarmACK() { return {0x0030, 6}; }
static constexpr Bit privateCallConfirm() { return {0x0031, 0}; }
static constexpr Bit privacyEnabled() { return {0x0031, 4}; }
static constexpr Bit timeSlot() { return {0x0031, 6}; }
static constexpr Bit dualCapacityDirectMode() { return {0x0032, 0}; }
static constexpr Bit nonSTEFrequency() { return {0x0032, 5}; }
static constexpr Bit bandwidth() { return {0x0033, 1}; }
static constexpr Bit rxOnly() { return {0x0033, 2}; }
static constexpr Bit talkaround() { return {0x0033, 3}; }
static constexpr Bit vox() { return {0x0033, 6}; }
static constexpr Bit power() { return {0x0033, 7}; }
/// @endcond
};
};
/** Implements the base for channel banks in Radioddity codeplugs.
*
* Memory layout of a channel bank:
* @verbinclude radioddity_channelbank.txt */
class ChannelBankElement: public Element
{
protected:
/** Hidden constructor. */
ChannelBankElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ChannelBankElement(uint8_t *ptr);
/** Destructor. */
virtual ~ChannelBankElement();
/** The size of the channel bank. */
static constexpr unsigned int size() { return 0x1c10; }
/** Clears the bank. */
void clear();
/** Returns @c true if the channel is enabled. */
virtual bool isEnabled(unsigned idx) const ;
/** Enable/disable a channel in the bank. */
virtual void enable(unsigned idx, bool enabled);
/** Returns a pointer to the channel at the given index. */
virtual uint8_t *get(unsigned idx) const;
/** Returns the n-th channel. */
ChannelElement channel(unsigned int n);
public:
/** Some limits for the channel bank. */
struct Limit {
/** The maximum number of channels. */
static constexpr unsigned int channelCount() { return 128; }
};
protected:
/** Some internal offset within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int bitmask() { return 0x0000; }
static constexpr unsigned int channels() { return 0x0010; }
/// @endcond
};
};
/** VFO Channel representation within the binary codeplug.
*
* Each channel requires 0x38b:
* @verbinclude radioddity_vfochannel.txt */
class VFOChannelElement: public ChannelElement
{
public:
/** Possible offset frequency modes. */
enum class OffsetMode {
Off = 0, ///< Disables transmit frequency offset.
Positive = 1, ///< Transmit offset frequency is positive (TX above RX).
Negative = 2 ///< Transmit offset frequency is negative (TX below RX).
};
/** Possible tuning step sizes. */
enum class StepSize {
SS2_5kHz = 0, ///< 2.5kHz
SS5kHz = 1, ///< 5kHz
SS6_25kHz = 2, ///< 6.25kHz
SS10kHz = 3, ///< 10kHz
SS12_5kHz = 4, ///< 12.5kHz
SS20kHz = 5, ///< 20kHz
SS30kHz = 6, ///< 30kHz
SS50kHz = 7 ///< 50kHz
};
protected:
/** Hidden constructor. */
VFOChannelElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit VFOChannelElement(uint8_t *ptr);
void clear();
/** The VFO channel has no name. */
QString name() const;
/** The VFO channel has no name. */
void setName(const QString &name);
/** Returns the tuning step-size in kHz. */
virtual double stepSize() const;
/** Sets the tuning step-size in kHz. */
virtual void setStepSize(double kHz);
/** Returns the transmit frequency offset mode. */
virtual OffsetMode offsetMode() const;
/** Returns the transmit frequency offset. */
virtual double txOffset() const;
/** Sets the transmit frequency offset in MHz. */
virtual void setTXOffset(double f);
/** Sets the transmit frequency offset mode. */
virtual void setOffsetMode(OffsetMode mode);
protected:
/// @cond DO_NOT_DOCUMENT
struct Offset: public ChannelElement::Offset {
static constexpr Bit stepSize() { return {0x0036, 4} ; }
static constexpr Bit offsetMode() { return {0x0036, 2} ; }
static constexpr unsigned int txOffset() { return 0x0034; }
};
/// @endcond
};
/** Implements the base for digital contacts in Radioddity codeplugs.
*
* Memory layout of a digital contact:
* @verbinclude radioddity_contact.txt */
class ContactElement: public Element
{
protected:
/** Hidden constructor. */
ContactElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ContactElement(uint8_t *ptr);
/** Destructor. */
virtual ~ContactElement();
/** The size of the contact element. */
static constexpr unsigned int size() { return 0x0018; }
/** Resets the contact. */
void clear();
/** Returns @c true if the contact is valid. */
bool isValid() const;
/** Returns the name of the contact. */
virtual QString name() const;
/** Sets the name of the contact. */
virtual void setName(const QString name);
/** Returns the DMR number of the contact. */
virtual unsigned number() const;
/** Sets the DMR number of the contact. */
virtual void setNumber(unsigned id);
/** Returns the call type. */
virtual DMRContact::Type type() const;
/** Sets the call type. */
virtual void setType(DMRContact::Type type);
/** Returns @c true if the ring tone is enabled for this contact. */
virtual bool ring() const;
/** Enables/disables ring tone for this contact. */
virtual void enableRing(bool enable);
/** Returns the ring tone style for this contact [0-10]. */
virtual unsigned ringStyle() const;
/** Sets the ring tone style for this contact [0-10]. */
virtual void setRingStyle(unsigned style);
/** Constructs a @c DigitalContact instance from this codeplug contact. */
virtual DMRContact *toContactObj(Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Resets this codeplug contact from the given @c DigitalContact. */
virtual bool fromContactObj(const DMRContact *obj, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for the contact. */
struct Limit {
/** Maximum name length. */
static constexpr unsigned int nameLength() { return 16; }
/** Number of possible ring-styles [0,10]. */
static constexpr unsigned int ringStyle() { return 10; }
};
protected:
/** Some internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int name() { return 0x0000; }
static constexpr unsigned int number() { return 0x0010; }
static constexpr unsigned int type() { return 0x0014; }
static constexpr unsigned int ring() { return 0x0015; }
static constexpr unsigned int ringStyle() { return 0x0016; }
/// @endcond
};
};
/** Implements a base DTMF (analog) contact for Radioddity codeplugs.
*
* Memory layout of the DTMF contact:
* @verbinclude radioddity_dtmfcontact.txt
*/
class DTMFContactElement: public Element
{
protected:
/** Hidden constructor. */
DTMFContactElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit DTMFContactElement(uint8_t *ptr);
/** Destructor. */
virtual ~DTMFContactElement();
/** The size of the contact element. */
static constexpr unsigned int size() { return 0x0020; }
/** Resets the contact. */
void clear();
/** Returns @c true if the contact is valid. */
bool isValid() const;
/** Returns the name of the contact. */
virtual QString name() const;
/** Sets the name of the contact. */
virtual void setName(const QString &name);
/** Returns the number of the contact. */
virtual QString number() const;
/** Sets the number of the contact. */
virtual void setNumber(const QString &number);
/** Constructs a @c DTMFContact instance from this codeplug contact. */
virtual DTMFContact *toContactObj(Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Resets this codeplug contact from the given @c DTMFContact. */
virtual bool fromContactObj(const DTMFContact *obj, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits. */
struct Limit {
/** The maximum name length. */
static constexpr unsigned int nameLength() { return 16; }
/** The maximum number length. */
static constexpr unsigned int numberLength() { return 16; }
};
protected:
/** Some internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int name() { return 0x0000; }
static constexpr unsigned int number() { return 0x0010; }
/// @endcond
};
};
/** Represents a zone within Radioddity codeplugs.
*
* Memory layout of the zone:
* @verbinclude radioddity_zone.txt
*/
class ZoneElement: public Element
{
protected:
/** Hidden constructor. */
ZoneElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ZoneElement(uint8_t *ptr);
virtual ~ZoneElement();
/** The size of the zone element. */
static constexpr unsigned int size() { return 0x0030; }
/** Resets the zone. */
void clear();
/** Returns @c true if the zone is valid. */
bool isValid() const;
/** Returns the name of the zone. */
virtual QString name() const;
/** Sets the name of the zone. */
virtual void setName(const QString &name);
/** Returns @c true if a member is stored at the given index.
* That is, if the index is not 0. */
virtual bool hasMember(unsigned n) const;
/** Returns the n-th member index (+1). */
virtual unsigned member(unsigned n) const;
/** Sets the n-th member index (+1). */
virtual void setMember(unsigned n, unsigned idx);
/** Clears the n-th member index. */
virtual void clearMember(unsigned n);
/** Constructs a generic @c Zone object from this codeplug zone. */
virtual Zone *toZoneObj(Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Links a previously constructed @c Zone object to the rest of the configuration. That is
* linking to the referred channels. */
virtual bool linkZoneObj(Zone *zone, Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Resets this codeplug zone representation from the given generic @c Zone object. */
virtual bool fromZoneObjA(const Zone *zone, Context &ctx, const ErrorStack &err=ErrorStack());
/** Resets this codeplug zone representation from the given generic @c Zone object. */
virtual bool fromZoneObjB(const Zone *zone, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for zone elements. */
struct Limit {
/** The maximum length of the zone name. */
static constexpr unsigned int nameLength() { return 16; }
/** The maximum number of members. */
static constexpr unsigned int memberCount() { return 16; }
};
protected:
/** Some internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int name() { return 0x0000; }
static constexpr unsigned int channels() { return 0x0010; }
static constexpr unsigned int betweenChannels() { return 0x0002; }
/// @endcond
};
};
/** Implements the base class for all zone banks of Radioddity codeplugs.
*
* Memory layout of the zone table/bank:
* @verbinclude radioddity_zonebank.txt
*/
class ZoneBankElement: public Element
{
protected:
/** Hidden constructor. */
ZoneBankElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ZoneBankElement(uint8_t *ptr);
/** Destructor. */
~ZoneBankElement();
/** The size of the zone element. */
static constexpr unsigned int size() { return 0x2f00; }
/** Resets the bank. */
void clear();
/** Returns @c true if the channel is enabled. */
virtual bool isEnabled(unsigned idx) const ;
/** Enable/disable a channel in the bank. */
virtual void enable(unsigned idx, bool enabled);
/** Returns a pointer to the channel at the given index. */
virtual uint8_t *get(unsigned idx) const;
/** Returns the n-th zone. */
ZoneElement zone(unsigned int n);
public:
/** Some limits for the zone bank. */
struct Limit {
/** The maximum number of zones in this bank. */
static constexpr unsigned int zoneCount() { return 250; }
};
protected:
/** Some internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int bitmap() { return 0x0000; }
static constexpr unsigned int zones() { return 0x0020; }
/// @endcond
};
};
/** Represents a base class for all group lists within Radioddity codeplugs.
*
* Memory layout of the RX group list:
* @verbinclude radioddity_grouplist.txt
*/
class GroupListElement: public Element
{
protected:
/** Hidden constructor. */
GroupListElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit GroupListElement(uint8_t *ptr);
/** Destructor. */
virtual ~GroupListElement();
/** Size of the group list element. */
static constexpr unsigned int size() { return 0x0030; }
/** Resets the group list. */
void clear();
/** Returns the name of the group list. */
virtual QString name() const;
/** Sets the name of the group list. */
virtual void setName(const QString &name);
/** Returns @c true if the group list has an n-th member.
* That is if the n-th index is not 0. */
virtual bool hasMember(unsigned n) const;
/** Returns the n-th member index (+1). */
virtual unsigned member(unsigned n) const;
/** Sets the n-th member index (+1). */
virtual void setMember(unsigned n, unsigned idx);
/** Clears the n-th member index. */
virtual void clearMember(unsigned n);
/** Constructs a @c RXGroupList object from the codeplug representation. */
virtual RXGroupList *toRXGroupListObj(Context &ctx, const ErrorStack &err = ErrorStack());
/** Links a previously constructed @c RXGroupList to the rest of the generic configuration. */
virtual bool linkRXGroupListObj(unsigned int ncnt, RXGroupList *lst, Context &ctx, const ErrorStack &err = ErrorStack()) const;
/** Reset this codeplug representation from a @c RXGroupList object. */
virtual bool fromRXGroupListObj(const RXGroupList *lst, Context &ctx, const ErrorStack &err = ErrorStack());
public:
/** Some limits for group lists. */
struct Limit {
static constexpr unsigned int nameLength() { return 16; } ///< Maximum name length.
static constexpr unsigned int memberCount() { return 16; } ///< Maximum number of entries.
};
protected:
/** Internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int name() { return 0x0000; }
static constexpr unsigned int members() { return 0x0010; }
static constexpr unsigned int betweenMembers() { return 0x0002; }
/// @endcond
};
};
/** Implements a base class of group list memory banks for all Radioddity codeplugs.
*
* Memory layout of the group list table:
* @verbinclude radioddity_grouplistbank.txt
*/
class GroupListBankElement: public Element
{
protected:
/** Hidden constructor. */
GroupListBankElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit GroupListBankElement(uint8_t *ptr);
/** Destructor. */
virtual ~GroupListBankElement();
/** The size of the group list bank element. */
static constexpr unsigned int size() { return 0x0c80; }
/** Resets the bank. */
void clear();
/** Returns @c true if the n-th group list is enabled. */
virtual bool isEnabled(unsigned n) const;
/** Returns the number of contacts in the n-th group list. */
virtual unsigned contactCount(unsigned n) const;
/** Sets the number of contacts in the n-th group list.
* This also enables the n-th group list. */
virtual void setContactCount(unsigned n, unsigned size);
/** Disables the n-th group list. */
virtual void disable(unsigned n);
/** Returns a pointer to the n-th group list. */
virtual uint8_t *get(unsigned n) const;
public:
/** Some limits for the group list bank. */
struct Limit {
static constexpr unsigned int groupListCount() { return 64; } ///< Maximum number of group lists.
};
protected:
/** Internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int contactCounts() { return 0x0000; }
static constexpr unsigned int groupLists() { return 0x0080; }
/// @endcond
};
};
/** Implements the base class for scan lists of all Radioddity codeplugs.
*
* Memory layout of the scan list.
* @verbinclude radioddity_scanlist.txt
*/
class ScanListElement: public Element
{
public:
/** Possible priority channel types. */
enum Mode {
PL_NONPRI = 0, ///< Only non-priority channels.
PL_DISABLE = 1, ///< Disable priority channels.
PL_PRI = 2, ///< Only priority channels.
PL_PRI_NONPRI = 3 ///< Priority and non-priority channels.
};
protected:
/** Hidden constructor. */
ScanListElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ScanListElement(uint8_t *ptr);
/** Destructor. */
virtual ~ScanListElement();
/** The size of the scan list. */
static constexpr unsigned int size() { return 0x0058; }
/** Resets the scan list. */
void clear();
/** Returns the name of the scan list. */
virtual QString name() const;
/** Sets the name of the scan list. */
virtual void setName(const QString &name);
/** Returns @c true if channel mark is enabled. */
virtual bool channelMark() const;
/** Enables/disables channel mark. */
virtual void enableChannelMark(bool enable);
/** Returns the scan mode. */
virtual Mode mode() const;
/** Sets the scan mode. */
virtual void setMode(Mode mode);
/** Returns @c true if talk back is enabled. */
virtual bool talkback() const;
/** Enables/disables talk back. */
virtual void enableTalkback(bool enable);
/** Returns @c true if the n-th member is set. */
virtual bool hasMember(unsigned n) const;
/** Returns @c true if the n-th member is selected channel. */
virtual bool isSelected(unsigned n) const;
/** Returns the n-th member index. */
virtual unsigned member(unsigned n) const;
/** Sets the n-th member index. */
virtual void setMember(unsigned n, unsigned idx);
/** Sets the n-th member to be the selected channel. */
virtual void setSelected(unsigned n);
/** Clears the n-th member. */
virtual void clearMember(unsigned n);
/** Returns @c true if the primary priority channel is set. */
virtual bool hasPrimary() const;
/** Returns @c true if the primary priority channel is the selected channel. */
virtual bool primaryIsSelected() const;
/** Return the channel index for the primary priority channel. */
virtual unsigned primary() const;
/** Sets the primary priority channel index. */
virtual void setPrimary(unsigned idx);
/** Sets the primary priority channel to be the selected channel. */
virtual void setPrimarySelected();
/** Clears the primary priority channel. */
virtual void clearPrimary();
/** Returns @c true if the secondary priority channel is set. */
virtual bool hasSecondary() const;
/** Returns @c true if the secondary priority channel is the selected channel. */
virtual bool secondaryIsSelected() const;
/** Return the channel index for the secondary priority channel. */
virtual unsigned secondary() const;
/** Sets the secondary priority channel index. */
virtual void setSecondary(unsigned idx);
/** Sets the secondary priority channel to be the selected channel. */
virtual void setSecondarySelected();
/** Clears the secondary priority channel. */
virtual void clearSecondary();
/** Returns @c true if the revert channel is set, if @c false the radio will transmit on the
* last active channel during scan. */
virtual bool hasRevert() const;
/** Returns @c true if the revert channel is the selected channel. */
virtual bool revertIsSelected() const;
/** Return the channel index for the revert channel. */
virtual unsigned revert() const;
/** Sets the revert channel index. */
virtual void setRevert(unsigned idx);
/** Sets the revert channel to be the selected one. */
virtual void setRevertSelected();
/** Clears the revert channel, sets it to last active. */
virtual void clearRevert();
/** Returns the hold time in ms. */
virtual unsigned holdTime() const;
/** Sets the hold time in ms. */
virtual void setHoldTime(unsigned ms);
/** Returns the priority sample time in ms. */
virtual unsigned prioritySampleTime() const;
/** Sets the priority sample time in ms. */
virtual void setPrioritySampleTime(unsigned ms);
/** Constructs a @c ScanList object from this codeplug representation. */
virtual ScanList *toScanListObj(Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Links a previously constructed @c ScanList object to the rest of the generic configuration. */
virtual bool linkScanListObj(ScanList *lst, Context &ctx, const ErrorStack &err=ErrorStack()) const;
/** Initializes this codeplug representation from the given @c ScanList object. */
virtual bool fromScanListObj(const ScanList *lst, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for the scan list. */
struct Limit: public Element::Limit {
/// Maximum name length.
static constexpr unsigned int name() { return 15; }
/// Maximum number of members.
static constexpr unsigned int members() { return 32; }
};
protected:
/// @cond DO_NOT_DOCUMENT
struct Offset: public Element::Offset {
static constexpr unsigned int name() { return 0x0000; }
static constexpr Bit channelMark() { return {0x000f, 4}; }
static constexpr Bit mode() { return {0x000f, 6}; }
static constexpr Bit talkback() { return {0x000f, 7}; }
static constexpr unsigned int members() { return 0x0010; }
static constexpr unsigned int betweenMembers() { return 0x0002; }
static constexpr unsigned int primary() { return 0x0050; }
static constexpr unsigned int secondary() { return 0x0052; }
static constexpr unsigned int revert() { return 0x0054; }
static constexpr unsigned int holdTime() { return 0x0056; }
static constexpr unsigned int primaryHoldTime() { return 0x0057; }
};
/// @endcond
};
/** Implements the base class of scan lists banks for all Radioddity codeplugs.
*
* Memory layout of the scan list table.
* @verbinclude radioddity_scanlistbank.txt
*/
class ScanListBankElement: public Element
{
protected:
/** Hidden constructor. */
ScanListBankElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ScanListBankElement(uint8_t *ptr);
/** Destructor. */
virtual ~ScanListBankElement();
/** The size of the scan list bank. */
static constexpr unsigned int size() { return 0x56f0; }
/** Resets the scan list bank. */
void clear();
/** Returns @c true if the n-th scan list is enabled. */
virtual bool isEnabled(unsigned n) const;
/** Enable/disable n-th scan list. */
virtual void enable(unsigned n, bool enabled);
/** Returns a pointer to the n-th scan list. */
virtual uint8_t *get(unsigned n) const;
public:
/** Some limits for the scan list bank. */
struct Limit {
static constexpr unsigned int scanListCount() { return 250; } ///< Maximum number of scan lists.
};
protected:
/** Internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int bytemap() { return 0x0000; }
static constexpr unsigned int scanLists() { return 0x0040; }
/// @endcond
};
};
/** Implements the base class of general settings for all Radioddity codeplugs.
*
* Memory layout of the general settings
* @verbinclude radioddity_generalsettings.txt
*/
class GeneralSettingsElement: public Element
{
public:
/** Use monitor type from extension. */
typedef RadiodditySettingsExtension::MonitorType MonitorType;
/** Use ARTS tone mode from extension. */
typedef RadioddityToneSettingsExtension::ARTSTone ARTSTone;
/** Use scan mode from extension. */
typedef RadiodditySettingsExtension::ScanMode ScanMode;
protected:
/** Hidden constructor. */
GeneralSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit GeneralSettingsElement(uint8_t *ptr);
/** Destructor. */
virtual ~GeneralSettingsElement();
/** The size of the element. */
static constexpr unsigned int size() { return 0x0028; }
/** Resets the general settings. */
void clear();
/** Returns the radio name. */
virtual QString name() const;
/** Sets the radio name. */
virtual void setName(const QString &name);
/** Returns the DMR radio ID. */
virtual unsigned radioID() const;
/** Sets the DMR radio ID. */
virtual void setRadioID(unsigned id);
/** Returns the preamble duration in ms. */
virtual unsigned preambleDuration() const;
/** Sets the preamble duration in ms. */
virtual void setPreambleDuration(unsigned ms);
/** Returns the monitor type. */
virtual MonitorType monitorType() const;
/** Sets the monitor type. */
virtual void setMonitorType(MonitorType type);
/** Returns the VOX sensitivity [1-10], 0=disabled. */
virtual unsigned voxSensitivity() const;
/** Sets the VOX sensitivity. */
virtual void setVOXSensitivity(unsigned value);
/** Returns the low-battery warn interval in seconds. */
virtual unsigned lowBatteryWarnInterval() const;
/** Sets the low-battery warn interval in seconds. */
virtual void setLowBatteryWarnInterval(unsigned sec);
/** Returns the call-alert duration in seconds. */
virtual unsigned callAlertDuration() const;
/** Sets the call-allert duration in seconds. */
virtual void setCallAlertDuration(unsigned sec);
/** Returns the lone-worker response period in minutes. */
virtual unsigned loneWorkerResponsePeriod() const;
/** Sets the lone-worker response period in minutes. */
virtual void setLoneWorkerResponsePeriod(unsigned min);
/** Returns the lone-worker reminder period in seconds. */
virtual unsigned loneWorkerReminderPeriod() const;
/** Sets the lone-worker reminder period in seconds. */
virtual void setLoneWorkerReminderPeriod(unsigned sec);
/** Returns the group call hang time in ms. */
virtual unsigned groupCallHangTime() const;
/** Sets the group call hang time in ms. */
virtual void setGroupCallHangTime(unsigned ms);
/** Returns the private call hang time in ms. */
virtual unsigned privateCallHangTime() const;
/** Sets the private call hang time in ms. */
virtual void setPrivateCallHangTime(unsigned ms);
/** Returns @c true if the down-channel mode is VFO. */
virtual bool downChannelModeVFO() const;
/** Enables/disables down-channel mode is VFO. */
virtual void enableDownChannelModeVFO(bool enable);
/** Returns @c true if the up-channel mode is VFO. */
virtual bool upChannelModeVFO() const;
/** Enables/disables up-channel mode is VFO. */
virtual void enableUpChannelModeVFO(bool enable);
/** Returns @c true if the reset tone is enabled. */
virtual bool resetTone() const;
/** Enables/disables reset tone. */
virtual void enableResetTone(bool enable);
/** Returns @c true if the unknown number tone is enabled. */
virtual bool unknownNumberTone() const;
/** Enables/disables reset tone. */
virtual void enableUnknownNumberTone(bool enable);
/** Returns the ARTS tone mode. */
virtual ARTSTone artsToneMode() const;
/** Sets the ARTS tone mode. */
virtual void setARTSToneMode(ARTSTone mode);
/** Returns @c true if the digital channel talk permit tone is enabled. */
virtual bool digitalTalkPermitTone() const;
/** Enables/disables digital channel talk permit tone. */
virtual void enableDigitalTalkPermitTone(bool enable);
/** Returns @c true if the analog channel talk permit tone is enabled. */
virtual bool analogTalkPermitTone() const;
/** Enables/disables analog channel talk permit tone. */
virtual void enableAnalogTalkPermitTone(bool enable);
/** Returns @c true if the reset tone is enabled. */
virtual bool selftestTone() const;
/** Enables/disables reset tone. */
virtual void enableSelftestTone(bool enable);
/** Returns @c true if the channel free indication tone is enabled. */
virtual bool channelFreeIndicationTone() const;
/** Enables/disables channel free indication tone. */
virtual void enableChannelFreeIndicationTone(bool enable);
/** Returns @c true if all tones are disabled. */
virtual bool allTonesDisabled() const;
/** Disables/enables all tones. */
virtual void disableAllTones(bool disable);
/** Returns @c true if reception is disabled for battery saving. */
virtual bool batsaveRX() const;
/** Enables/disables battery saving by disabling RX. */
virtual void enableBatsaveRX(bool enable);
/** Returns @c true if preable is disabled for battery saving. */
virtual bool batsavePreamble() const;
/** Enables/disables battery saving by disabling preamble. */
virtual void enableBatsavePreamble(bool enable);
/** Returns @c true if all LEDs are disabled. */
virtual bool allLEDsDisabled() const;
/** Disables/enables all LEDs. */
virtual void disableAllLEDs(bool disable);
/** Returns true if quick-key override is inhibited. */
virtual bool quickKeyOverrideInhibited() const;
/** Inhibits quick-key override. */
virtual void inhibitQuickKeyOverride(bool inhibit);
/** Returns @c true if the TX exit tone is enabled. */
virtual bool txExitTone() const;
/** Enables/disables TX exit tone. */
virtual void enableTXExitTone(bool enable);
/** Returns @c true if the radio transmits on the active channel on double monitor. */
virtual bool txOnActiveChannel() const;
/** Enables/disables transmission on active channel on double monitor. */
virtual void enableTXOnActiveChannel(bool enable);
/** Returns @c true if animation is enabled. */
virtual bool animation() const;
/** Enables/disables animation. */
virtual void enableAnimation(bool enable);
/** Returns the scan mode. */
virtual ScanMode scanMode() const;
/** Sets the scan mode. */
virtual void setScanMode(ScanMode mode);
/** Returns the repeater end delay in [0-10]. */
virtual unsigned repeaterEndDelay() const;
/** Sets the repeater end delay in [0-10]. */
virtual void setRepeaterEndDelay(unsigned delay);
/** Returns the repeater STE in [0-10]. */
virtual unsigned repeaterSTE() const;
/** Sets the repeater STE in [0-10]. */
virtual void setRepeaterSTE(unsigned ste);
/** Returns @c true if a programming password is set. */
virtual bool hasProgPassword() const;
/** Returns the programming password. */
virtual QString progPassword() const;
/** Sets the programming password. */
virtual void setProgPassword(const QString &pwd);
/** Resets the programming password. */
virtual void clearProgPassword();
/** Encodes the general setting from the given config. */
virtual bool fromConfig(Context &ctx, const ErrorStack &err=ErrorStack());
/** Updates the given config from this settings. */
virtual bool updateConfig(Context &ctx, const ErrorStack &err=ErrorStack());
};
/** Implements the base class of button settings for all Radioddity codeplugs.
*
* Encoding of button settings (size 0x20b):
* @verbinclude radioddity_buttonsettings.txt */
class ButtonSettingsElement: public Element
{
public:
/** Encoding/decoding of function key actions. */
struct KeyFunction {
public:
/** Encodes the given function. */
static uint8_t encode(RadioddityButtonSettingsExtension::Function func);
/** Decodes the action. */
static RadioddityButtonSettingsExtension::Function decode(uint8_t action);
protected:
/** Possible function key actions. */
enum Action {
None = 0x00, ///< Disables button.
ToggleAllAlertTones = 0x01,
EmergencyOn = 0x02,
EmergencyOff = 0x03,
ToggleMonitor = 0x05, ///< Toggle monitor on channel.
NuiaceDelete = 0x06,
OneTouch1 = 0x07, ///< Performs the first of 6 user-programmable actions (call, message).
OneTouch2 = 0x08, ///< Performs the second of 6 user-programmable actions (call, message).
OneTouch3 = 0x09, ///< Performs the third of 6 user-programmable actions (call, message).
OneTouch4 = 0x0a, ///< Performs the fourth of 6 user-programmable actions (call, message).
OneTouch5 = 0x0b, ///< Performs the fifth of 6 user-programmable actions (call, message).
OneTouch6 = 0x0c, ///< Performs the sixt of 6 user-programmable actions (call, message).
ToggleRepeatTalkaround = 0x0d,
ToggleScan = 0x0e,
TogglePrivacy = 0x10,
ToggleVox = 0x11,
ZoneSelect = 0x12,
BatteryIndicator = 0x13,
ToggleLoneWorker = 0x14,
PhoneExit = 0x16,
ToggleFlashLight = 0x1a,
ToggleFMRadio = 0x1b
};
};
/** Possible one-touch actions. */
enum class OneTouchAction {
None = 0x00, ///< Disabled.
DigitalCall = 0x10, ///< Calls a digital contact.
DigitalMessage = 0x11, ///< Sends a SMS.
AnalogCall = 0x20 ///< Calls an analog contact.
};
protected:
/** Hidden constructor */
ButtonSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit ButtonSettingsElement(uint8_t *ptr);
/** Destructor. */
virtual ~ButtonSettingsElement();
/** Clears the button settings. */
void clear();
/** Returns the long-press duration in ms. */
virtual Interval longPressDuration() const;
/** Sets the long-press duration in ms. */
virtual void setLongPressDuration(Interval ms);
/** Returns the side-key 1 short-press action. */
virtual RadioddityButtonSettingsExtension::Function sk1ShortPress() const;
/** Sets the side-key 1 short-press action. */
virtual void setSK1ShortPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the side-key 1 long-press action. */
virtual RadioddityButtonSettingsExtension::Function sk1LongPress() const;
/** Sets the side-key 1 long-press action. */
virtual void setSK1LongPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the side-key 2 short-press action. */
virtual RadioddityButtonSettingsExtension::Function sk2ShortPress() const;
/** Sets the side-key 2 short-press action. */
virtual void setSK2ShortPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the side-key 2 long-press action. */
virtual RadioddityButtonSettingsExtension::Function sk2LongPress() const;
/** Sets the side-key 2 long-press action. */
virtual void setSK2LongPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the top-key short-press action. */
virtual RadioddityButtonSettingsExtension::Function tkShortPress() const;
/** Sets the top-key short-press action. */
virtual void setTKShortPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the top-key long-press action. */
virtual RadioddityButtonSettingsExtension::Function tkLongPress() const;
/** Sets the top-key long-press action. */
virtual void setTKLongPress(RadioddityButtonSettingsExtension::Function action);
/** Returns the n-th one-touch action. */
virtual OneTouchAction oneTouchAction(unsigned n) const;
/** Returns the n-th one-touch contact index (if action is @c OneTouchAction::DigitalCall). */
virtual unsigned oneTouchContact(unsigned n) const;
/** Returns the n-th one-touch message index (if action is @c OneTouchAction::DigitalMessage). */
virtual unsigned oneTouchMessage(unsigned n) const;
/** Disables the n-th one-touch action. */
virtual void disableOneTouch(unsigned n);
/** Configures n-th one-touch action as a digital call to contact index. */
virtual void setOneTouchDigitalCall(unsigned n, unsigned index);
/** Configures n-th one-touch action as a digital message using given index. */
virtual void setOneTouchDigitalMessage(unsigned n, unsigned index);
/** Configures n-th one-touch action as a analog call. */
virtual void setOneTouchAnalogCall(unsigned n);
/** Encodes the button settings (if set). */
bool encode(Context &ctx, const ErrorStack &err=ErrorStack());
/** Decodes the button settings. */
bool decode(Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits. */
struct Limits {
/** Range of valid long-press durations. */
static constexpr TimeRange longPressDuration() {
return TimeRange{Interval::fromMilliseconds(0), Interval::fromMilliseconds(255*250)};
}
/** Number of one-touch actions. */
static constexpr unsigned int oneTouchActions() { return 6; }
};
protected:
/** Internal used offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int longPressDuration() { return 0x0001; }
static constexpr unsigned int sk1ShortPress() { return 0x0002; }
static constexpr unsigned int sk1LongPress() { return 0x0003; }
static constexpr unsigned int sk2ShortPress() { return 0x0004; }
static constexpr unsigned int sk2LongPress() { return 0x0005; }
static constexpr unsigned int tkShortPress() { return 0x0006; }
static constexpr unsigned int tkLongPress() { return 0x0007; }
static constexpr unsigned int oneTouchActions() { return 0x0008; }
static constexpr unsigned int betweenOneTouchActions() { return 0x0004; }
/// @endcond
};
};
/** Implements the base class of menu settings for all Radioddity codeplugs.
*
* Encoding of Menu settings (size 0x08b):
* @verbinclude radioddity_menusettings.txt */
class MenuSettingsElement: public Element
{
public:
/** Possible channel display modes. */
enum class ChannelDisplayMode {
Number = 0, ///< Show channel number.
Name = 1, ///< Show channel name.
Frequency = 2 ///< Show channel frequency.
};
/** Possible dual-watch modes. */
enum class DualWatchMode {
DualDual = 1,
DualSingle = 2
};
protected:
/** Hidden constructor. */
MenuSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit MenuSettingsElement(uint8_t *ptr);
/** Destructor. */
virtual ~MenuSettingsElement();
/** Resets the menu settings. */
void clear();
/** Returns the menu hang-time in seconds. */
virtual unsigned menuHangTime() const;
/** Sets the menu hang time in seconds. */
virtual void setMenuHangTime(unsigned sec);
/** Returns @c true if the message menu is shown. */
virtual bool message() const;
/** Enables/disables the message menu. */
virtual void enableMessage(bool enable);
/** Returns @c true if the scan-start menu is shown. */
virtual bool scanStart() const;
/** Enables/disables the scan-start menu. */
virtual void enableScanStart(bool enable);
/** Returns @c true if the edit scan-list menu is shown. */
virtual bool editScanList() const;
/** Enables/disables the edit scan-list menu. */
virtual void enableEditScanList(bool enable);
/** Returns @c true if the call-alert menu is shown. */
virtual bool callAlert() const;
/** Enables/disables the call-alert menu. */
virtual void enableCallAlert(bool enable);
/** Returns @c true if the edit-contact menu is shown. */
virtual bool editContact() const;
/** Enables/disables the edit-contact menu. */
virtual void enableEditContact(bool enable);
/** Returns @c true if the manual-dial menu is shown. */
virtual bool manualDial() const;
/** Enables/disables the manual-dial menu. */
virtual void enableManualDial(bool enable);
/** Returns @c true if the radio-check menu is shown. */
virtual bool radioCheck() const;
/** Enables/disables the radioCheck menu. */
virtual void enableRadioCheck(bool enable);
/** Returns @c true if the remote-monitor menu is shown. */
virtual bool remoteMonitor() const;
/** Enables/disables the message menu. */
virtual void enableRemoteMonitor(bool enable);
/** Returns @c true if the radio-enable menu is shown. */
virtual bool radioEnable() const;
/** Enables/disables the radio-enable menu. */
virtual void enableRadioEnable(bool enable);
/** Returns @c true if the radio-disable menu is shown. */
virtual bool radioDisable() const;
/** Enables/disables the radio-disable menu. */
virtual void enableRadioDisable(bool enable);
/** Returns @c true if the programming-password menu is shown. */
virtual bool progPassword() const;
/** Enables/disables the programming-password menu. */
virtual void enableProgPassword(bool enable);
/** Returns @c true if the talkaround menu is shown. */
virtual bool talkaround() const;
/** Enables/disables the talkaround menu. */
virtual void enableTalkaround(bool enable);
/** Returns @c true if the tone menu is shown. */
virtual bool tone() const;
/** Enables/disables the tone menu. */
virtual void enableTone(bool enable);
/** Returns @c true if the power menu is shown. */
virtual bool power() const;
/** Enables/disables the power menu. */
virtual void enablePower(bool enable);
/** Returns @c true if the backlight menu is shown. */
virtual bool backlight() const;
/** Enables/disables the backlight menu. */
virtual void enableBacklight(bool enable);
/** Returns @c true if the intro-screen menu is shown. */
virtual bool introScreen() const;
/** Enables/disables the message menu. */
virtual void enableIntroScreen(bool enable);
/** Returns @c true if the keypad-lock menu is shown. */
virtual bool keypadLock() const;
/** Enables/disables the keypad-lock menu. */
virtual void enableKeypadLock(bool enable);
/** Returns @c true if the LED-indicator menu is shown. */
virtual bool ledIndicator() const;
/** Enables/disables the LED-indicator menu. */
virtual void enableLEDIndicator(bool enable);
/** Returns @c true if the squelch menu is shown. */
virtual bool squelch() const;
/** Enables/disables the squelch menu. */
virtual void enableSquelch(bool enable);
/** Returns @c true if the privacy menu is shown. */
virtual bool privacy() const;
/** Enables/disables the privacy menu. */
virtual void enablePrivacy(bool enable);
/** Returns @c true if the VOX menu is shown. */
virtual bool vox() const;
/** Enables/disables the VOX menu. */
virtual void enableVOX(bool enable);
/** Returns @c true if the password-lock menu is shown. */
virtual bool passwordLock() const;
/** Enables/disables the password-lock menu. */
virtual void enablePasswordLock(bool enable);
/** Returns @c true if the missed-calls menu is shown. */
virtual bool missedCalls() const;
/** Enables/disables the missed-calls menu. */
virtual void enableMissedCalls(bool enable);
/** Returns @c true if the answered-calls menu is shown. */
virtual bool answeredCalls() const;
/** Enables/disables the answered-calls menu. */
virtual void enableAnsweredCalls(bool enable);
/** Returns @c true if the outgoing-calls menu is shown. */
virtual bool outgoingCalls() const;
/** Enables/disables the outgoing-calls menu. */
virtual void enableOutgoingCalls(bool enable);
/** Returns @c true if the channel display-mode menu is shown. */
virtual bool channelDisplay() const;
/** Enables/disables the channel display mode menu. */
virtual void enableChannelDisplay(bool enable);
/** Returns @c true if the dual-watch menu is shown. */
virtual bool dualWatch() const;
/** Enables/disables the dual-watch menu. */
virtual void enableDualWatch(bool enable);
/** Returns the keypad lock time in seconds. */
virtual unsigned keypadLockTime() const;
/** Sets the keypad lock time in seconds. */
virtual void setKeypadLockTime(unsigned sec);
/** Returns the backlight time in seconds. */
virtual unsigned backlightTime() const;
/** Sets the backlight time in seconds. */
virtual void setBacklightTime(unsigned sec);
/** Returns the channel display mode. */
virtual ChannelDisplayMode channelDisplayMode() const;
/** Sets the channel display mode. */
virtual void setChannelDisplayMode(ChannelDisplayMode mode);
/** Returns @c true if the keytone is enabled. */
virtual bool keyTone() const;
/** Enables/disables the keytone. */
virtual void enableKeyTone(bool enable);
/** Returns the dual-watch mode. */
virtual DualWatchMode dualWatchMode() const;
/** Sets the dual-watch mode. */
virtual void setDualWatchMode(DualWatchMode mode);
};
/** Implements the base class of boot settings for all Radioddity codeplugs.
*
* Encoding of boot settings (size 0x20b):
* @verbinclude radioddity_bootsettings.txt */
class BootSettingsElement: public Element
{
protected:
/** Hidden constructor. */
BootSettingsElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit BootSettingsElement(uint8_t *ptr);
/** Destructor. */
virtual ~BootSettingsElement();
/** Resets the settings. */
void clear();
/** Returns @c true if the text is shown on boot, other wise an image is shown. */
virtual bool bootText() const;
/** Enables/disables boot text. */
virtual void enableBootText(bool enable);
/** Returns @c true if the boot password is enabled. */
virtual bool bootPasswordEnabled() const;
/** Enables/disables the boot password. */
virtual void enableBootPassword(bool enable);
/** Returns the boot password (6 digit). */
virtual unsigned bootPassword() const;
/** Sets the boot password (6 digit). */
virtual void setBootPassword(unsigned passwd);
};
/** Implements the base class of boot messages for all Radioddity codeplugs.
*
* Encoding of boot messages (size 0x20b):
* @verbinclude radioddity_boottext.txt */
class BootTextElement: public Element
{
protected:
/** Hidden constructor. */
BootTextElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit BootTextElement(uint8_t *ptr);
/** Destructor. */
virtual ~BootTextElement();
/** The size of the boot text element. */
static constexpr unsigned int size() { return 0x0020; }
/** Resets the intro text. */
void clear();
/** Returns the first line. */
virtual QString line1() const;
/** Sets the first line. */
virtual void setLine1(const QString &text);
/** Returns the Second line. */
virtual QString line2() const;
/** Sets the second line. */
virtual void setLine2(const QString &text);
/** Encodes boot text settings from configuration. */
virtual bool fromConfig(Context &ctx, const ErrorStack &err = ErrorStack());
/** Updates the configuration with the boot text settings. */
virtual bool updateConfig(Context &ctx, const ErrorStack &err = ErrorStack());
public:
/** Some limits for this element. */
struct Limit {
static constexpr unsigned int lineLength() { return 16; } ///< The maximum length of the boot text line.
};
protected:
/** Internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int line1() { return 0x0000;}
static constexpr unsigned int line2() { return 0x0010;}
/// @endcond
};
};
/** Implements the base class of a message bank for all Radioddity message banks.
*
* Encoding of messages (size: 0x1248b):
* @verbinclude radioddity_messagebank.txt */
class MessageBankElement: public Element
{
protected:
/** Hidden constructor. */
MessageBankElement(uint8_t *ptr, unsigned size);
public:
/** Constructor. */
explicit MessageBankElement(uint8_t *ptr);
/** Destructor. */
virtual ~MessageBankElement();
/** Returns the size of the message bank. */
static constexpr unsigned int size() { return 0x1248; }
/** Resets all messages. */
void clear();
/** Returns the number of messages. */
virtual unsigned numMessages() const;
/** Returns the n-th message. */
virtual QString message(unsigned n) const;
/** Appends a message to the list. */
virtual void appendMessage(const QString msg);
/** Encodes all preset messages. */
virtual bool encode(Context &ctx, const Flags &flags, const ErrorStack &err=ErrorStack());
/** Decodes all preset messages. */
virtual bool decode(Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits. */
struct Limit {
static constexpr unsigned int messages() { return 32; } ///< Maximum number of messages.
static constexpr unsigned int messageLength() { return 144; } ///< Maximum length of each message.
};
protected:
/** Some internal used offset. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int messageConut() { return 0x0000; }
static constexpr unsigned int messageLengths() { return 0x0008; }
static constexpr unsigned int messages() { return 0x0048; }
static constexpr unsigned int betweenMessages() { return Limit::messageLength(); }
/// @endcond
};
};
/** Represents all encryption keys and settings within the codeplug on the device.
*
* Memory representation of encryption settings:
* @verbinclude radioddity_privacy.txt */
class EncryptionElement: public Codeplug::Element
{
public:
/** Encodes possible privacy types. For now, only none (encryption disabled) and basic are
* supported. */
enum class PrivacyType {
None, ///< No encryption at all.
Basic ///< Use basic DMR encryption.
};
protected:
/** Hidden constructor. */
EncryptionElement(uint8_t *ptr, size_t size);
public:
/** Constructor. */
explicit EncryptionElement(uint8_t *ptr);
/** Destructor. */
virtual ~EncryptionElement();
/** The size of the element. */
static constexpr unsigned int size() { return 0x0088; }
void clear();
/** Returns the privacy type set. */
virtual PrivacyType privacyType() const;
/** Sets the privacy type. */
virtual void setPrivacyType(PrivacyType type);
/** Returns @c true if the n-th "basic" key (32bit) is set.
* That is, if it is not filled with 0xff. */
virtual bool isBasicKeySet(unsigned n) const;
/** Returns the n-th "basic" key (32bit). */
virtual QByteArray basicKey(unsigned n) const;
/** Sets the n-th "basic" key (32bit). */
virtual void setBasicKey(unsigned n, const QByteArray &key);
/** Resets the n-th basic key. */
virtual void clearBasicKey(unsigned n);
/** Encodes given encryption extension. */
virtual bool fromCommercialExt(CommercialExtension *ext, Context &ctx, const ErrorStack &err=ErrorStack());
/** Constructs the encryption extension. */
virtual bool updateCommercialExt(Context &ctx, const ErrorStack &err=ErrorStack());
/** Links the given encryption extension. */
virtual bool linkCommercialExt(CommercialExtension *ext, Context &ctx, const ErrorStack &err=ErrorStack());
public:
/** Some limits for this element. */
struct Limit {
/** The maximum number of keys. */
static constexpr unsigned int keyCount() { return 16; }
/** The required key size. */
static constexpr unsigned int keySize() { return 4; }
};
protected:
/** Internal offsets within the element. */
struct Offset {
/// @cond DO_NOT_DOCUMENT
static constexpr unsigned int privacyType() { return 0x0000; }
static constexpr unsigned int bitmap() { return 0x0002; }
static constexpr unsigned int keys() { return 0x0008; } ///< Offset of the first key.
static constexpr unsigned int key() { return 0x0008;} ///< Offset between keys.
/// @endcond
};
};
protected:
/** Hidden constructor, use a device specific class to instantiate. */
explicit RadioddityCodeplug(QObject *parent=nullptr);
public:
/** Destructor. */
virtual ~RadioddityCodeplug();
/** Clears and resets the complete codeplug to some default values. */
virtual void clear();
bool index(Config *config, Context &ctx, const ErrorStack &err=ErrorStack()) const;
bool decode(Config *config, const ErrorStack &err=ErrorStack());
bool postprocess(Config *config, const ErrorStack &err) const;
Config *preprocess(Config *config, const ErrorStack &err) const;
bool encode(Config *config, const Flags &flags = Flags(), const ErrorStack &err=ErrorStack());
public:
/** Decodes the binary codeplug and stores its content in the given generic configuration using
* the given context. */
virtual bool decodeElements(Context &ctx, const ErrorStack &err=ErrorStack());
/** Encodes the given generic configuration as a binary codeplug using the given context. */
virtual bool encodeElements(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack());
/** Clears the general settings in the codeplug. */
virtual void clearGeneralSettings() = 0;
/** Updates the general settings from the given configuration. */
virtual bool encodeGeneralSettings(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Updates the given configuration from the general settings. */
virtual bool decodeGeneralSettings(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears the button settings. */
virtual void clearButtonSettings() = 0;
/** Encodes button settings. */
virtual bool encodeButtonSettings(Context &ctx, const Flags &flags, const ErrorStack &err=ErrorStack()) = 0;
/** Decodes the button settings. */
virtual bool decodeButtonSettings(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears the messages. */
virtual void clearMessages() = 0;
/** Encodes preset messages. */
virtual bool encodeMessages(Context &ctx, const Flags &flags, const ErrorStack &err=ErrorStack()) = 0;
/** Decodes preset messages. */
virtual bool decodeMessages(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears all contacts in the codeplug. */
virtual void clearContacts() = 0;
/** Encodes all digital contacts in the configuration into the codeplug. */
virtual bool encodeContacts(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Adds a digital contact to the configuration for each one in the codeplug. */
virtual bool createContacts(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears all DTMF contacts in the codeplug. */
virtual void clearDTMFContacts() = 0;
/** Encodes all DTMF contacts. */
virtual bool encodeDTMFContacts(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Adds all DTMF contacts to the configuration. */
virtual bool createDTMFContacts(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clear all channels. */
virtual void clearChannels() = 0;
/** Encode all channels. */
virtual bool encodeChannels(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Adds all defined channels to the configuration. */
virtual bool createChannels(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Links all channels. */
virtual bool linkChannels(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clear boot settings. */
virtual void clearBootSettings() = 0;
/** Clears menu settings. */
virtual void clearMenuSettings() = 0;
/** Clears boot text. */
virtual void clearBootText() = 0;
/** Encodes boot text. */
virtual bool encodeBootText(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Updates the given configuration from the boot text settings. */
virtual bool decodeBootText(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears the VFO settings. */
virtual void clearVFOSettings() = 0;
/** Clears all zones. */
virtual void clearZones() = 0;
/** Encodes zones. */
virtual bool encodeZones(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Adds zones to the configuration. */
virtual bool createZones(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Links all zones within the configuration. */
virtual bool linkZones(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears all scan lists. */
virtual void clearScanLists() = 0;
/** Encodes all scan lists. */
virtual bool encodeScanLists(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Creates all scan lists. */
virtual bool createScanLists(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Links all scan lists. */
virtual bool linkScanLists(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears all group lists. */
virtual void clearGroupLists() = 0;
/** Encodes all group lists. */
virtual bool encodeGroupLists(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Creates all group lists. */
virtual bool createGroupLists(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Links all group lists. */
virtual bool linkGroupLists(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Clears all encryption keys. */
virtual void clearEncryption() = 0;
/** Encodes all encryption keys defined. */
virtual bool encodeEncryption(const Flags &flags, Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Creates all encryption keys. */
virtual bool createEncryption(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
/** Links all encryption keys. */
virtual bool linkEncryption(Context &ctx, const ErrorStack &err=ErrorStack()) = 0;
};
#endif // RADIODDITYCODEPLUG_HH
|