Doxygen update

git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@428 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
dvl
2018-01-15 11:40:43 +00:00
parent 15ab232e82
commit cfb55967c7
12 changed files with 111 additions and 1 deletions

View File

@@ -64,6 +64,7 @@ struct IODevice
* IODevice_construct
* Constructor for a new IO Device
*
* @memberof IODevice
* @param self IO Device instance to create
* @param read Pointer to read function
* @param write Pointer to write function
@@ -81,6 +82,7 @@ extern ErrorStatus IODevice_construct (struct IODevice* self, ReadFunction read,
* IODevice_write
* Writes a character buffer to IO Device
*
* @memberof IODevice
* @param self IO Device instance to create
* @param buffer The character string to write to device
* @param length length (in number of bytes) of buffer
@@ -98,6 +100,7 @@ extern ErrorStatus IODevice_write(const struct IODevice* self, const char* buffe
* IODevice_read
* Reads from IO Device
*
* @memberof IODevice
* @param self IO Device instance to create
* @param buffer Pointer to location where read data is
* written to