@@ -203,15 +203,9 @@ class LoRaWANBase {
203
203
* MSG_CONFIRMED_FLAG = 0x02
204
204
* MSG_MULTICAST_FLAG = 0x04
205
205
* MSG_PROPRIETARY_FLAG = 0x08
206
- * MSG_MULTICAST_FLAG and MSG_PROPRIETARY_FLAG can be
207
- * used in conjunction with MSG_UNCONFIRMED_FLAG and
208
- * MSG_CONFIRMED_FLAG depending on the intended use.
209
- *
210
- * MSG_PROPRIETARY_FLAG|MSG_CONFIRMED_FLAG mask will set
211
- * a confirmed message flag for a proprietary message.
212
- * MSG_CONFIRMED_FLAG and MSG_UNCONFIRMED_FLAG are
213
- * mutually exclusive.
214
206
*
207
+ * All flags are mutually exclusive, and MSG_MULTICAST_FLAG
208
+ * cannot be set.
215
209
*
216
210
* @return The number of bytes sent, or
217
211
* LORAWAN_STATUS_WOULD_BLOCK if another TX is
@@ -240,14 +234,11 @@ class LoRaWANBase {
240
234
* MSG_MULTICAST_FLAG = 0x04,
241
235
* MSG_PROPRIETARY_FLAG = 0x08
242
236
*
243
- * MSG_MULTICAST_FLAG and MSG_PROPRIETARY_FLAG can be
244
- * used in conjunction with MSG_UNCONFIRMED_FLAG and
245
- * MSG_CONFIRMED_FLAG depending on the intended use.
246
- *
247
- * MSG_PROPRIETARY_FLAG|MSG_CONFIRMED_FLAG mask will set
248
- * a confirmed message flag for a proprietary message.
237
+ * All flags can be used in conjunction with
238
+ * one another depending on the intended use case or reception
239
+ * expectation.
249
240
*
250
- * MSG_CONFIRMED_FLAG and MSG_UNCONFIRMED_FLAG are
241
+ * e.g., MSG_CONFIRMED_FLAG and MSG_UNCONFIRMED_FLAG are
251
242
* not mutually exclusive, i.e., the user can subscribe to
252
243
* receive both CONFIRMED AND UNCONFIRMED messages at
253
244
* the same time.
0 commit comments