@@ -61,8 +61,8 @@ typedef struct
61
61
/**
62
62
* Function that allocates a buffer.
63
63
*
64
- * @param allocatedLength the number of octets the resulting buffer should be
65
- * able to store.
64
+ * @param[in] allocatedLength the number of octets the resulting buffer should
65
+ * be able to store.
66
66
* @return A newly allocated buffer. This should later be freed with
67
67
* chipZclBufferFree.
68
68
*/
@@ -71,16 +71,16 @@ ChipZclBuffer_t * chipZclBufferAlloc(uint16_t allocatedLength);
71
71
/**
72
72
* Function that returns a raw pointer to the underlying buffer.
73
73
*
74
- * @param buffer the buffer we are working with.
74
+ * @param[in] buffer the buffer we are working with.
75
75
* @return A pointer to its underlying memory.
76
76
*/
77
77
uint8_t * chipZclBufferPointer (ChipZclBuffer_t * buffer );
78
78
79
79
/**
80
80
* Function that frees a buffer and its storage.
81
81
*
82
- * @param buffer a buffer to free. The buffer should have been allocated with
83
- * chipZclBufferAlloc.
82
+ * @param[in] buffer a buffer to free. The buffer should have been allocated
83
+ * with chipZclBufferAlloc.
84
84
*/
85
85
void chipZclBufferFree (ChipZclBuffer_t * buffer );
86
86
@@ -90,7 +90,7 @@ void chipZclBufferFree(ChipZclBuffer_t * buffer);
90
90
* After this call, the buffer is ready for reading or writing from the
91
91
* beginning again, depending on whether it was in reading more or writing mode.
92
92
*
93
- * @param buffer the buffer to reset.
93
+ * @param[in] buffer the buffer to reset.
94
94
*/
95
95
void chipZclBufferReset (ChipZclBuffer_t * buffer );
96
96
@@ -99,15 +99,15 @@ void chipZclBufferReset(ChipZclBuffer_t * buffer);
99
99
* when the buffer is ready for reading. Always returns 0 for buffers that are
100
100
* being written to.
101
101
*
102
- * @param buffer the buffer whose used length we want.
102
+ * @param[in] buffer the buffer whose used length we want.
103
103
* @return The number of bytes the given buffer holds.
104
104
*/
105
105
uint16_t chipZclBufferUsedLength (ChipZclBuffer_t * buffer );
106
106
107
107
/**
108
108
* Indicates that we are done writing to a buffer and prepares it for reading.
109
109
*
110
- * @param buffer the buffer we are done writing to.
110
+ * @param[in] buffer the buffer we are done writing to.
111
111
*/
112
112
void chipZclBufferFinishWriting (ChipZclBuffer_t * buffer );
113
113
0 commit comments