aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authortrsaunders <trsaunders@gmail.com>2012-10-13 16:39:25 +0100
committertrsaunders <trsaunders@gmail.com>2012-10-13 16:39:25 +0100
commit15a6687fd851fb5c3fbc6257a88264c49f52b612 (patch)
treebbbac4f868505061c341b0858932cb27a4aeb4bb /include
parentc754ae0a3c7cb3f37eff1c691b9e1bcccd601de7 (diff)
downloaduGFX-15a6687fd851fb5c3fbc6257a88264c49f52b612.tar.gz
uGFX-15a6687fd851fb5c3fbc6257a88264c49f52b612.tar.bz2
uGFX-15a6687fd851fb5c3fbc6257a88264c49f52b612.zip
update console for latest chibios changes
Diffstat (limited to 'include')
-rw-r--r--include/console.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h
index 0cb62cdd..e0bf7de6 100644
--- a/include/console.h
+++ b/include/console.h
@@ -22,13 +22,22 @@
#define CONSOLE_H
#ifndef GDISP_NEED_CONSOLE
- #undef GDISP_NEED_CONSOLE
+ #define GDISP_NEED_CONSOLE FALSE
#endif
#if GDISP_NEED_CONSOLE
#include "gdisp.h"
+ /**
+ * @extends BaseAsynchronousChannelVMT
+ *
+ * @brief @p GConsole virtual methods table.
+ */
+struct GConsoleVMT {
+ _base_asynchronous_channel_methods
+};
+
/**
* @extends BaseAsynchronousChannel
*