aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/ARM7/chcore.c2
-rw-r--r--os/ports/GCC/ARMCM3/chcore.c4
-rw-r--r--os/ports/GCC/ARMCM3/nvic.c4
-rw-r--r--os/ports/GCC/AVR/chcore.c2
-rw-r--r--os/ports/GCC/MSP430/chcore.c2
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.