diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-18 09:45:57 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-18 09:45:57 +0000 |
commit | 140c2d06cdffd63ef06b258064f0065b8ddef140 (patch) | |
tree | 65dbd79fa6242fc100511492fe30cb870b938faa /ports/ARMCM3/chcore.c | |
parent | ed534c135cf6013575fa691db0f48a0b7388a164 (diff) | |
download | ChibiOS-140c2d06cdffd63ef06b258064f0065b8ddef140.tar.gz ChibiOS-140c2d06cdffd63ef06b258064f0065b8ddef140.tar.bz2 ChibiOS-140c2d06cdffd63ef06b258064f0065b8ddef140.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@633 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/ARMCM3/chcore.c')
-rw-r--r-- | ports/ARMCM3/chcore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/ARMCM3/chcore.c b/ports/ARMCM3/chcore.c index f3e15238d..acbc97d9b 100644 --- a/ports/ARMCM3/chcore.c +++ b/ports/ARMCM3/chcore.c @@ -33,7 +33,7 @@ * @param msg pointer to the message string */
__attribute__((weak))
-void sys_puts(char *msg) {
+void port_puts(char *msg) {
}
/**
@@ -42,9 +42,9 @@ void sys_puts(char *msg) { * it in your application code.
*/
__attribute__((weak))
-void sys_halt(void) {
+void port_halt(void) {
- sys_disable_all();
+ port_disable();
while (TRUE) {
}
}
|