aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-09-28 18:42:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-09-28 18:42:04 +0000
commit9a0ef300bce50901d5de3d6d722e29b79a2f9a36 (patch)
tree3f6ba1c9a49c9534d931bbc33baff4368ce25d26 /src/templates
parent95b238fc867da32f28c74b98b793fbd40345b595 (diff)
downloadChibiOS-9a0ef300bce50901d5de3d6d722e29b79a2f9a36.tar.gz
ChibiOS-9a0ef300bce50901d5de3d6d722e29b79a2f9a36.tar.bz2
ChibiOS-9a0ef300bce50901d5de3d6d722e29b79a2f9a36.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@25 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/chcore.c2
-rw-r--r--src/templates/chcore.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/templates/chcore.c b/src/templates/chcore.c
index 29a809378..e23cf1bfe 100644
--- a/src/templates/chcore.c
+++ b/src/templates/chcore.c
@@ -37,7 +37,7 @@
void chSysPause(void) {}
/**
- * Abonormal system termination handler. Invoked by the ChobiOS/RT when an
+ * Abonormal system termination handler. Invoked by the ChibiOS/RT when an
* abnormal unrecoverable condition is met.
*/
void chSysHalt(void) {}
diff --git a/src/templates/chcore.h b/src/templates/chcore.h
index 895e2b685..bb901b1ec 100644
--- a/src/templates/chcore.h
+++ b/src/templates/chcore.h
@@ -39,7 +39,7 @@ struct stackregs {
}
/**
- * Enters the ChobiOS/RT system mutual exclusion zone, the implementation is
+ * Enters the ChibiOS/RT system mutual exclusion zone, the implementation is
* architecture dependent, on single core systems usually this function
* just disables the interrupts.
* @note The code in the system mutual exclusion zone must be as light and
@@ -50,7 +50,7 @@ struct stackregs {
#define chSysLock()
/**
- * Leaves the ChobiOS/RT system mutual exclusion zone, the implementation is
+ * Leaves the ChibiOS/RT system mutual exclusion zone, the implementation is
* architecture dependent, on single core systems usually this function
* just enables the interrupts.
* @note The code in the system mutual exclusion zone must be as light and