From 01f9a04e4a32516167899e3796a208698a4dc47b Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sun, 26 Feb 2017 09:44:16 +0100 Subject: [PATCH] Add pbuf_get_contiguous() to doxygen docs --- src/core/pbuf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index 1aae6bb1..4dd1a26a 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -1056,7 +1056,9 @@ pbuf_copy_partial(const struct pbuf *buf, void *dataptr, u16_t len, u16_t offset return copied_total; } -/** Get part of a pbuf's payload as contiguous memory. The returned memory is +/** + * @ingroup pbuf + * Get part of a pbuf's payload as contiguous memory. The returned memory is * either a pointer into the pbuf's payload or, if split over multiple pbufs, * a copy into the user-supplied buffer. *