1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #8657 from OTAkeys/pr/fix_isrpipe_doc_ms

isrpipe: fix timeout unit in api documentation
This commit is contained in:
Martine Lenders 2018-02-28 11:50:48 +01:00 committed by GitHub
commit 19e7058ce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ int isrpipe_read(isrpipe_t *isrpipe, char *buf, size_t count);
* @param[in] isrpipe isrpipe object to operate on
* @param[in] buf buffer to write to
* @param[in] count number of bytes to read
* @param[in] timeout timeout in ms
* @param[in] timeout timeout in microseconds
*
* @returns number of bytes read
* @returns -ETIMEDOUT on timeout
@ -102,7 +102,7 @@ int isrpipe_read_timeout(isrpipe_t *isrpipe, char *buf, size_t count, uint32_t t
* @param[in] isrpipe isrpipe object to operate on
* @param[in] buf buffer to write to
* @param[in] count number of bytes to read
* @param[in] timeout timeout in ms
* @param[in] timeout timeout in microseconds
*
* @returns number of bytes read
* @returns -ETIMEDOUT on timeout