do includes the right way (for riot includes)

This commit is contained in:
Christian Mehlis 2013-06-14 20:33:28 +02:00
parent d32b785816
commit 3ab669578c
4 changed files with 17 additions and 17 deletions

View File

@ -41,7 +41,7 @@ and the mailinglist (subscription via web site)
* @note $Id: cc110x-defaultSettings.c 2058 2010-03-31 08:59:31Z hillebra $ * @note $Id: cc110x-defaultSettings.c 2058 2010-03-31 08:59:31Z hillebra $
*/ */
#include <cc110x-defaultSettings.h> #include "cc110x-defaultSettings.h"
/** /**
* Usable, non overlapping channels and corresponding frequencies * Usable, non overlapping channels and corresponding frequencies

View File

@ -44,13 +44,13 @@ and the mailinglist (subscription via web site)
#include <stdio.h> #include <stdio.h>
#include <cc110x_ng.h> #include "cc110x_ng.h"
#include <cc110x-arch.h> #include "cc110x-arch.h"
#include <cc110x-internal.h> #include "cc110x-internal.h"
#include <cc110x_spi.h> #include "cc110x_spi.h"
#include <cc110x-reg.h> #include "cc110x-reg.h"
#include <irq.h> #include "irq.h"
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
// CC1100 SPI access // CC1100 SPI access

View File

@ -19,8 +19,8 @@
#ifndef __VTIMER_H #ifndef __VTIMER_H
#define __VTIMER_H #define __VTIMER_H
#include <queue.h> #include "queue.h"
#include <timex.h> #include "timex.h"
#define MSG_TIMER 12345 #define MSG_TIMER 12345

View File

@ -2,14 +2,14 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <limits.h> #include <limits.h>
#include <vtimer.h>
#include <timex.h> #include "vtimer.h"
#include <debug.h> #include "timex.h"
#include <thread.h> #include "debug.h"
#include <mutex.h> #include "thread.h"
#include <hwtimer.h> #include "mutex.h"
#include <rtc.h> #include "hwtimer.h"
#include <lpc2387-rtc.h> #include "rtc.h"
#include "msg.h" #include "msg.h"
#include "sixlowmac.h" #include "sixlowmac.h"
#include "sixlowpan.h" #include "sixlowpan.h"