git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4308 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-06-19 20:58:16 +00:00
parent de6bbbb9ef
commit 0d1164787e
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ typedef struct {
*
* @api
*/
#define chnPutTimeout(ip, b, time) ((ip)->vmt->put(ip, b, time))
#define chnPutTimeout(ip, b, time) ((ip)->vmt->putt(ip, b, time))
/**
* @brief Channel blocking byte read with timeout.
@ -127,7 +127,7 @@ typedef struct {
*
* @api
*/
#define chnGetTimeout(ip, time) ((ip)->vmt->get(ip, time))
#define chnGetTimeout(ip, time) ((ip)->vmt->gett(ip, time))
/**
* @brief Channel blocking write.