diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-02 10:13:20 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-02 10:13:20 +0000 |
commit | 8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e (patch) | |
tree | 25419dcebe5e79da65a2fe6e84aa13764efb705a /src | |
parent | e1301550bccc67c25fa9581da3b18cfefc4c601c (diff) | |
download | ChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.tar.gz ChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.tar.bz2 ChibiOS-8cfd8aefb69f582c8d658995b6ce7b3f8b024c7e.zip |
Initial documentation for channels.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@932 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/include/channels.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/channels.h b/src/include/channels.h index deb01f433..a534de9b7 100644 --- a/src/include/channels.h +++ b/src/include/channels.h @@ -54,7 +54,7 @@ struct _base_channel_data { * @details This class represents a generic, synchronous, byte-wide,
* I/O channel. */
-typedef struct _base_channel {
+typedef struct {
struct _base_channel_vmt *vmt; /**< Virtual Methods Table. */
struct _base_channel_data d0; /**< Class data. */
} BaseChannel;
|