@@ -171,7 +171,7 @@ typedef struct {
171
171
/**
172
172
* @see netdev_driver_t::get_option
173
173
*
174
- * @detail The options are constrained as follows:
174
+ * @details The options are constrained as follows:
175
175
*
176
176
* *opt* | type | *value_len*
177
177
* --------------------------- | ----------- | -----------
@@ -190,7 +190,7 @@ typedef struct {
190
190
/**
191
191
* @see netdev_driver_t::set_option
192
192
*
193
- * @detail The options are constrained as follows:
193
+ * @details The options are constrained as follows:
194
194
*
195
195
* *opt* | type | *value_len* | *value*
196
196
* --------------------------- | ----------- | ----------- | --------
@@ -232,6 +232,7 @@ typedef struct {
232
232
* @brief Load the transceiver TX buffer with the given
233
233
* IEEE 802.15.4 packet.
234
234
*
235
+ * @param[in] dev the network device
235
236
* @param[in] kind Kind of packet to transmit.
236
237
* @param[in] dest Address of the node to which the packet is sent.
237
238
* @param[in] use_long_addr 1 to use the 64-bit address mode
@@ -269,6 +270,8 @@ typedef struct {
269
270
/**
270
271
* @brief Transmit the data loaded into the transceiver TX buffer.
271
272
*
273
+ * @param[in] dev the network device
274
+ *
272
275
* @return The outcome of this packet's transmission.
273
276
* @see netdev_802154_tx_status_t
274
277
*/
@@ -281,6 +284,7 @@ typedef struct {
281
284
* by calling successively functions netdev_802154_driver_t::load_tx()
282
285
* and netdev_802154_driver_t::transmit().
283
286
*
287
+ * @param[in] dev the network device
284
288
* @param[in] kind Kind of packet to transmit.
285
289
* @param[in] dest Address of the node to which the packet is sent.
286
290
* @param[in] use_long_addr 1 to use the 64-bit address mode
@@ -319,12 +323,13 @@ typedef struct {
319
323
* @brief Add a function to be called back when the radio transceiver
320
324
* has received a incoming packet.
321
325
*
322
- * @detail This function differentiates from
326
+ * @details This function differentiates from
323
327
* netdev_driver_t::add_receive_data_callback() as it expects
324
328
* a callback that excepts the raw frame format of IEEE 802.15.4,
325
329
* rather than just the source and destination addresses and the
326
330
* payload.
327
331
*
332
+ * @param[in] dev the network device
328
333
* @param[in] recv_func the callback function to invoke for each
329
334
* packet received by the radio transceiver.
330
335
* @see netdev_802153_raw_packet_cb_t
@@ -340,6 +345,7 @@ typedef struct {
340
345
/**
341
346
* @brief Remove a callback set by netdev_802154_driver_t::add_receive_raw_callback()
342
347
*
348
+ * @param[in] dev the network device
343
349
* @param[in] recv_func the callback function to invoke for each
344
350
* packet received by the radio transceiver.
345
351
* @see netdev_802153_raw_packet_cb_t
@@ -355,6 +361,8 @@ typedef struct {
355
361
* @brief Indicates if the radio medium is available for transmission
356
362
* ("Clear Channel Assessment").
357
363
*
364
+ * @param[in] dev the network device
365
+ *
358
366
* @return 1 if radio medium is "clear" (available);
359
367
* @return 0 if another transmission is already running.
360
368
* @return -ENODEV, if *dev* is not recognized
@@ -407,6 +415,7 @@ int netdev_802154_send_data(netdev_t *dev, void *dest, size_t dest_len,
407
415
* netdev_802154_driver_t::transmit() successfully. Default value for
408
416
* netdev_802154_driver_t::send()
409
417
*
418
+ * @param[in] dev the network device
410
419
* @param[in] kind Kind of packet to transmit.
411
420
* @param[in] dest Address of the node to which the packet is sent.
412
421
* @param[in] use_long_addr 1 to use the 64-bit address mode
0 commit comments