aboutsummaryrefslogtreecommitdiffstats
path: root/os/various
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-03 10:22:48 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-03 10:22:48 +0000
commite2adb48040fe4bb6436b33b33d57851f4bf05678 (patch)
tree50fe1c258ab68fc6aaa3b03fe756a261010e3320 /os/various
parentd86e97b242b4fc9dd616eeecf38f421dab7ac214 (diff)
downloadChibiOS-e2adb48040fe4bb6436b33b33d57851f4bf05678.tar.gz
ChibiOS-e2adb48040fe4bb6436b33b33d57851f4bf05678.tar.bz2
ChibiOS-e2adb48040fe4bb6436b33b33d57851f4bf05678.zip
Missing virtual...
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5023 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various')
-rw-r--r--os/various/cpp_wrappers/ch.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/various/cpp_wrappers/ch.hpp b/os/various/cpp_wrappers/ch.hpp
index 25649c05d..139328fc5 100644
--- a/os/various/cpp_wrappers/ch.hpp
+++ b/os/various/cpp_wrappers/ch.hpp
@@ -2106,7 +2106,7 @@ namespace chibios_rt {
*
* @api
*/
- size_t write(const uint8_t *bp, size_t n) = 0;
+ virtual size_t write(const uint8_t *bp, size_t n) = 0;
/**
* @brief Sequential Stream read.
@@ -2120,7 +2120,7 @@ namespace chibios_rt {
*
* @api
*/
- size_t read(uint8_t *bp, size_t n) = 0;
+ virtual size_t read(uint8_t *bp, size_t n) = 0;
/**
* @brief Sequential Stream blocking byte write.
@@ -2135,7 +2135,7 @@ namespace chibios_rt {
*
* @api
*/
- msg_t put(uint8_t b) = 0;
+ virtual msg_t put(uint8_t b) = 0;
/**
* @brief Sequential Stream blocking byte read.
@@ -2147,7 +2147,7 @@ namespace chibios_rt {
*
* @api
*/
- msg_t get(void) = 0;
+ virtual msg_t get(void) = 0;
};
}