aboutsummaryrefslogtreecommitdiffstats
path: root/ports/ARM7
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-18 09:12:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-18 09:12:08 +0000
commitdec8eecc8eaa46edad5b380c1d26c28c576c276b (patch)
treea71abf300ff86a9e3d422a5d6b09b7b1acb64452 /ports/ARM7
parent0286cd989a212e56fb088e0ae3b2d98eab00e5a8 (diff)
downloadChibiOS-dec8eecc8eaa46edad5b380c1d26c28c576c276b.tar.gz
ChibiOS-dec8eecc8eaa46edad5b380c1d26c28c576c276b.tar.bz2
ChibiOS-dec8eecc8eaa46edad5b380c1d26c28c576c276b.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@630 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/ARM7')
-rw-r--r--ports/ARM7/chcore.c46
-rw-r--r--ports/ARM7/chcore.h2
2 files changed, 47 insertions, 1 deletions
diff --git a/ports/ARM7/chcore.c b/ports/ARM7/chcore.c
new file mode 100644
index 000000000..d7d51c85b
--- /dev/null
+++ b/ports/ARM7/chcore.c
@@ -0,0 +1,46 @@
+/*
+ ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+
+ This file is part of ChibiOS/RT.
+
+ ChibiOS/RT is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/RT is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/**
+ * @addtogroup ARM7_CORE
+ * @{
+ */
+
+#include <ch.h>
+
+/**
+ * Prints a message on the system console.
+ * @param msg pointer to the message
+ */
+__attribute__((weak))
+void port_puts(char *msg) {
+}
+
+/**
+ * Halts the system.
+ */
+__attribute__((weak))
+void port_halt(void) {
+
+ port_disable();
+ while (TRUE) {
+ }
+}
+
+/** @} */
diff --git a/ports/ARM7/chcore.h b/ports/ARM7/chcore.h
index 1a949ad79..cd6d40590 100644
--- a/ports/ARM7/chcore.h
+++ b/ports/ARM7/chcore.h
@@ -31,6 +31,7 @@
#ifndef ENABLE_WFI_IDLE
#define ENABLE_WFI_IDLE 0
#endif
+#include <wfi.h>
/**
* Macro defining the ARM7 architecture.
@@ -265,7 +266,6 @@ typedef struct {
extern "C" {
#endif
void port_puts(char *msg);
- void port_wait_for_interrupt(void);
void port_halt(void);
#ifdef THUMB
void _port_lock_thumb(void);