|
158 | 158 | * @def MY_SERIAL_OUTPUT_SIZE |
159 | 159 | * @brief Maximum characters for serial output. |
160 | 160 | * |
161 | | - * If you are running extreamely low on memory, reducing this size might just save your day. |
| 161 | + * If you are running extremely low on memory, reducing this size might just save your day. |
162 | 162 | */ |
163 | 163 | #ifndef MY_SERIAL_OUTPUT_SIZE |
164 | 164 | #define MY_SERIAL_OUTPUT_SIZE (120u) |
|
394 | 394 |
|
395 | 395 | /** |
396 | 396 | * @def MY_RF24_DATARATE |
397 | | - * @brief RF24 datarate. |
| 397 | + * @brief RF24 data rate. |
398 | 398 | * |
399 | 399 | * - RF24_250KBPS for 250kbs |
400 | 400 | * - RF24_1MBPS for 1Mbps |
|
633 | 633 |
|
634 | 634 | /** |
635 | 635 | * @def MY_RFM69_TX_POWER_DBM |
636 | | - * @brief Set TX power level, default 5dBm (overriden if ATC mode enabled). |
| 636 | + * @brief Set TX power level, default 5dBm (overridden if ATC mode enabled). |
637 | 637 | */ |
638 | 638 | #ifndef MY_RFM69_TX_POWER_DBM |
639 | 639 | #define MY_RFM69_TX_POWER_DBM (5) |
|
895 | 895 |
|
896 | 896 | /** |
897 | 897 | * @def MY_RFM95_TX_POWER_DBM |
898 | | - * @brief Set TX power level, default 13dBm (overriden if ATC mode enabled) |
| 898 | + * @brief Set TX power level, default 13dBm (overridden if ATC mode enabled) |
899 | 899 | * |
900 | 900 | * See here https://en.wikipedia.org/wiki/Short_Range_Devices |
901 | 901 | */ |
|
1506 | 1506 | * with the regular software and ATSHA204A based modes. |
1507 | 1507 | * |
1508 | 1508 | * If the provided password is shorter than the size of the HMAC or %AES key, it will be null-padded |
1509 | | - * to accomodate the key size in question. A 32 character password is the maximum length. Any |
| 1509 | + * to accommodate the key size in question. A 32 character password is the maximum length. Any |
1510 | 1510 | * password longer than that will be truncated. |
1511 | 1511 | */ |
1512 | 1512 | //#define MY_SIGNING_SIMPLE_PASSWD "MyInsecurePassword" |
|
1546 | 1546 | * requirements. |
1547 | 1547 | * |
1548 | 1548 | * Use this for evaluating security. It allows for gradual introduction of signing requirements in |
1549 | | - * a network. Nodes that present themselves as not requiering signing or whitelisting will be |
| 1549 | + * a network. Nodes that present themselves as not requiring signing or whitelisting will be |
1550 | 1550 | * cleared of this requirement at the receiving end. A gateway which require signatures will only do |
1551 | 1551 | * so from nodes that in turn require signatures. |
1552 | 1552 | * |
|
1626 | 1626 | /** @}*/ // End of SigningSettingGrpPub group |
1627 | 1627 |
|
1628 | 1628 | /** |
1629 | | - * @defgroup MyLockgrppub Node locknig |
| 1629 | + * @defgroup MyLockgrppub Node locking |
1630 | 1630 | * @ingroup MyConfig |
1631 | 1631 | * @brief These options control node lock related configurations. |
1632 | 1632 | * |
|
1639 | 1639 | * message to the gateway/controller with 30 minute intervals. Payload is a string with a reason for |
1640 | 1640 | * the locking. |
1641 | 1641 | * |
1642 | | - * The string is abbreviated to accomodate a signature. The following abbreviations exist at the |
| 1642 | + * The string is abbreviated to accommodate a signature. The following abbreviations exist at the |
1643 | 1643 | * moment: |
1644 | 1644 | * - LDB (Locked During Boot) |
1645 | 1645 | * - TMNR (Too Many Nonce Requests) |
|
1668 | 1668 |
|
1669 | 1669 | /** |
1670 | 1670 | * @def MY_NODE_UNLOCK_PIN |
1671 | | - * @brief By grounding this pin durig reset of a locked node, the node will unlock. |
| 1671 | + * @brief By grounding this pin during reset of a locked node, the node will unlock. |
1672 | 1672 | * |
1673 | 1673 | * If using a secure bootloader, grounding the pin is the only option to reactivate the node. |
1674 | 1674 | * If using stock Android bootloader or a DualOptiBoot it is also possible to download a sketch |
|
1680 | 1680 |
|
1681 | 1681 | /** |
1682 | 1682 | * @def MY_NODE_LOCK_COUNTER_MAX |
1683 | | - * @brief Maximum accepted occurances of suspected malicious activity in a node. |
| 1683 | + * @brief Maximum accepted occurrences of suspected malicious activity in a node. |
1684 | 1684 | * |
1685 | | - * Counter decrements on reoccuring incidents but resets if legitimate behaviour is identified. |
| 1685 | + * Counter decrements on reoccurring incidents but resets if legitimate behaviour is identified. |
1686 | 1686 | */ |
1687 | 1687 | #ifndef MY_NODE_LOCK_COUNTER_MAX |
1688 | 1688 | #define MY_NODE_LOCK_COUNTER_MAX (5) |
|
1782 | 1782 | #define MY_NODE_TYPE "REPEATER" |
1783 | 1783 | #elif defined(DOXYGEN) |
1784 | 1784 | #define MY_IS_GATEWAY //!< true when configuration indicate a gateway device, @todo Mark these internals |
1785 | | -#define MY_NODE_TYPE //!< "GW" for wateways, REPEATER" for repeaters, "NODE" for nodes, @todo Mark these internals |
| 1785 | +#define MY_NODE_TYPE //!< "GW" for gateways, REPEATER" for repeaters, "NODE" for nodes, @todo Mark these internals |
1786 | 1786 | #else |
1787 | 1787 | #define MY_IS_GATEWAY (false) |
1788 | 1788 | #define MY_NODE_TYPE "NODE" |
|
0 commit comments