aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/ARM/chcore.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-17 08:10:14 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-17 08:10:14 +0000
commite490b05b935466ec32d30e2ef2726f0098eb31e1 (patch)
treef1ff093f7ae62b392f30222b6ea2352658366a4d /os/ports/GCC/ARM/chcore.c
parentaf8b31dd68645be4e65f2ef52cbb4dcddf90a2df (diff)
downloadChibiOS-e490b05b935466ec32d30e2ef2726f0098eb31e1.tar.gz
ChibiOS-e490b05b935466ec32d30e2ef2726f0098eb31e1.tar.bz2
ChibiOS-e490b05b935466ec32d30e2ef2726f0098eb31e1.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2378 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/ARM/chcore.c')
-rw-r--r--os/ports/GCC/ARM/chcore.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/os/ports/GCC/ARM/chcore.c b/os/ports/GCC/ARM/chcore.c
new file mode 100644
index 000000000..51ed31fc3
--- /dev/null
+++ b/os/ports/GCC/ARM/chcore.c
@@ -0,0 +1,43 @@
+/*
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 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/>.
+*/
+
+/**
+ * @file ARM7/chcore.c
+ * @brief ARM7 architecture port code.
+ *
+ * @addtogroup ARM7_CORE
+ * @{
+ */
+
+#include "ch.h"
+
+/**
+ * Halts the system.
+ */
+#if !defined(__DOXYGEN__)
+__attribute__((weak))
+#endif
+void port_halt(void) {
+
+ port_disable();
+ while (TRUE) {
+ }
+}
+
+/** @} */