diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-06-19 20:58:16 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-06-19 20:58:16 +0000 |
commit | 0d1164787e76a5b1014e7b761c7498e8a2ef9ece (patch) | |
tree | 4670461f6472194266c33595ca4d0ac247637c23 | |
parent | de6bbbb9eff7592723d401c6340b9e4c78b24953 (diff) | |
download | ChibiOS-0d1164787e76a5b1014e7b761c7498e8a2ef9ece.tar.gz ChibiOS-0d1164787e76a5b1014e7b761c7498e8a2ef9ece.tar.bz2 ChibiOS-0d1164787e76a5b1014e7b761c7498e8a2ef9ece.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4308 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/include/io_channel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/io_channel.h b/os/hal/include/io_channel.h index 5573184f5..726a2040a 100644 --- a/os/hal/include/io_channel.h +++ b/os/hal/include/io_channel.h @@ -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.
|