@@ -109,12 +109,12 @@ class STM32LoRaWAN : public Stream {
109
109
* string (`String` object or `const char*`), for the EUIs also
110
110
* a raw integer (64-bits).
111
111
*
112
- * \MKRWANApiDifference{Timeout parameter omitted (also ommited in MKRWAN_v2)}
112
+ * \MKRWANApiDifference{Timeout parameter omitted (also omitted in MKRWAN_v2)}
113
113
* \MKRWANApiDifference{Added version that accepts uint64_t appEUI}
114
114
* \MKRWANApiDifference{Differences in timeout and retry datarate handling}
115
115
*
116
116
* These methods will perform multiple join attempts and block until
117
- * the join completes succesfully , or a timeout (60 seconds) occurs.
117
+ * the join completes successfully , or a timeout (60 seconds) occurs.
118
118
*
119
119
* There are some subtle differences with MKRWAN in how the join
120
120
* process works:
@@ -126,7 +126,7 @@ class STM32LoRaWAN : public Stream {
126
126
* - With MKRWAN the module automatically decreases/alternates the
127
127
* datarate in a region-specific way for all regions, this
128
128
* library uses the configured datarate (with `datarate()`) for
129
- * most regions, but uses fixed datarates (according ot LoRaWAN
129
+ * most regions, but uses fixed datarates (according to LoRaWAN
130
130
* regional parameters) for US915/AU915/AS923.
131
131
* @{ */
132
132
bool joinOTAA (const char *appEui, const char *appKey, const char *devEui) { return setDevEui (devEui) && joinOTAA (appEui, appKey); }
@@ -215,7 +215,7 @@ class STM32LoRaWAN : public Stream {
215
215
* This blocks until the packet is completely sent an both RX
216
216
* windows have been completed.
217
217
*
218
- * \return The number of bytes sent when succesful , or -1 when the
218
+ * \return The number of bytes sent when successful , or -1 when the
219
219
* packet could not be sent. For confirmed packets, also returns -1
220
220
* when no confirmation was received (in that case the packet might
221
221
* still have been sent correctly).
@@ -263,7 +263,7 @@ class STM32LoRaWAN : public Stream {
263
263
virtual int availableForWrite ();
264
264
265
265
/* *
266
- * This is a no-op, to send writen data, use endPacket(). \DummyImplementation
266
+ * This is a no-op, to send written data, use endPacket(). \DummyImplementation
267
267
*/
268
268
virtual void flush () { }
269
269
@@ -435,7 +435,7 @@ class STM32LoRaWAN : public Stream {
435
435
436
436
/* *
437
437
* Returns whether connected to the network (i.e. for OTAA
438
- * a succesfull join exchange has happened, or for ABP session
438
+ * a successful join exchange has happened, or for ABP session
439
439
* information has been supplied by calling joinABP).
440
440
*/
441
441
bool connected ();
@@ -459,7 +459,7 @@ class STM32LoRaWAN : public Stream {
459
459
460
460
/* * @name Radio / transmission configuration
461
461
*
462
- * These methods allow configuring various radio and tranmission
462
+ * These methods allow configuring various radio and transmission
463
463
* parameters.
464
464
*
465
465
* @{ */
@@ -620,14 +620,14 @@ class STM32LoRaWAN : public Stream {
620
620
* @{ */
621
621
622
622
/* *
623
- * Return the frame counter of the most recent uplink messsage that
623
+ * Return the frame counter of the most recent uplink message that
624
624
* was completely transmitted (i.e. after the RX windows have
625
625
* passed).
626
626
*/
627
627
int32_t getFCU ();
628
628
629
629
/* *
630
- * Return the frame counter of the most recent downlink messsage that
630
+ * Return the frame counter of the most recent downlink message that
631
631
* was received.
632
632
*/
633
633
int32_t getFCD ();
@@ -697,7 +697,7 @@ class STM32LoRaWAN : public Stream {
697
697
* This initiates a single join attempt (one JoinReq message). After
698
698
* both receive windows are complete, `busy()` will become false and
699
699
* the sketch can call `connected()` to see if the join attempt
700
- * was succesful . If not, it is up to the sketch to decide on
700
+ * was successful . If not, it is up to the sketch to decide on
701
701
* retries.
702
702
*
703
703
* \NotInMKRWAN
0 commit comments