diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 17:37:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 17:37:49 +0000 |
commit | bdb7f4ab20bd3daf261ab93dfe733e0ff11dca0f (patch) | |
tree | bdd606762debab9287b43597075c082685dbfdd1 /os/ports | |
parent | 894e11f8f781dc17ff729acfddc4db1a3091951f (diff) | |
download | ChibiOS-bdb7f4ab20bd3daf261ab93dfe733e0ff11dca0f.tar.gz ChibiOS-bdb7f4ab20bd3daf261ab93dfe733e0ff11dca0f.tar.bz2 ChibiOS-bdb7f4ab20bd3daf261ab93dfe733e0ff11dca0f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1397 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r-- | os/ports/GCC/ARM7/chcore.c | 2 | ||||
-rw-r--r-- | os/ports/GCC/ARMCM3/chcore.c | 4 | ||||
-rw-r--r-- | os/ports/GCC/ARMCM3/nvic.c | 4 | ||||
-rw-r--r-- | os/ports/GCC/AVR/chcore.c | 2 | ||||
-rw-r--r-- | os/ports/GCC/MSP430/chcore.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/os/ports/GCC/ARM7/chcore.c b/os/ports/GCC/ARM7/chcore.c index bd1942aba..582e16c62 100644 --- a/os/ports/GCC/ARM7/chcore.c +++ b/os/ports/GCC/ARM7/chcore.c @@ -24,7 +24,7 @@ * @{
*/
-#include <ch.h>
+#include "ch.h"
/**
* Halts the system. diff --git a/os/ports/GCC/ARMCM3/chcore.c b/os/ports/GCC/ARMCM3/chcore.c index 47480217d..6a8f21853 100644 --- a/os/ports/GCC/ARMCM3/chcore.c +++ b/os/ports/GCC/ARMCM3/chcore.c @@ -24,8 +24,8 @@ * @{
*/
-#include <ch.h>
-#include <nvic.h>
+#include "ch.h"
+#include "nvic.h"
/**
* @brief Halts the system.
diff --git a/os/ports/GCC/ARMCM3/nvic.c b/os/ports/GCC/ARMCM3/nvic.c index e61637848..9fbf40044 100644 --- a/os/ports/GCC/ARMCM3/nvic.c +++ b/os/ports/GCC/ARMCM3/nvic.c @@ -24,8 +24,8 @@ * @{
*/
-#include <ch.h>
-#include <nvic.h>
+#include "ch.h"
+#include "nvic.h"
/**
* @brief Sets the priority of an interrupt handler and enables it.
diff --git a/os/ports/GCC/AVR/chcore.c b/os/ports/GCC/AVR/chcore.c index fedba0fbe..e4f12b088 100644 --- a/os/ports/GCC/AVR/chcore.c +++ b/os/ports/GCC/AVR/chcore.c @@ -24,7 +24,7 @@ * @{
*/
-#include <ch.h>
+#include "ch.h"
/**
* Performs a context switch between two threads.
diff --git a/os/ports/GCC/MSP430/chcore.c b/os/ports/GCC/MSP430/chcore.c index 374bec9a6..399c8a6f0 100644 --- a/os/ports/GCC/MSP430/chcore.c +++ b/os/ports/GCC/MSP430/chcore.c @@ -24,7 +24,7 @@ * @{
*/
-#include <ch.h>
+#include "ch.h"
/**
* Performs a context switch between two threads.
|