aboutsummaryrefslogtreecommitdiffstats
path: root/ports/AVR/chcore.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-22 08:43:49 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-22 08:43:49 +0000
commit1fa657d77dde43a9c283a67bf86c57531f624437 (patch)
treed24267f79ae1c9c81ff0bde96adb4c85284ba32d /ports/AVR/chcore.c
parent5954248a03a87a68cbb81ca4c830a31aa07d33e0 (diff)
downloadChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.tar.gz
ChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.tar.bz2
ChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.zip
Removed unused port functionality port_puts().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@800 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/AVR/chcore.c')
-rw-r--r--ports/AVR/chcore.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/ports/AVR/chcore.c b/ports/AVR/chcore.c
index 41888ca3f..2050360f8 100644
--- a/ports/AVR/chcore.c
+++ b/ports/AVR/chcore.c
@@ -27,19 +27,6 @@
#include <ch.h>
/**
- * The default implementation of this function is void so no messages are
- * actually printed.
- * @note The function is declared as a weak symbol, it is possible to redefine
- * it in your application code.
- * @param msg pointer to the message string
- */
-/** @cond never */
-__attribute__((weak))
-/** @endcond */
-void port_puts(char *msg) {
-}
-
-/**
* Performs a context switch between two threads.
* @param otp the thread to be switched out
* @param ntp the thread to be switched in