Skip to content

Commit

Permalink
changed #include directives in library files to use angle brackets in…
Browse files Browse the repository at this point in the history
…stead of double quotes
  • Loading branch information
kevin-pololu authored and DavidEGrayson committed Mar 23, 2011
1 parent d3f73f6 commit b7d8d3e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions libraries/include/radio_link.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#ifndef _RADIO_LINK
#define _RADIO_LINK

#include "cc2511_types.h"
#include "radio_mac.h"
#include <cc2511_types.h>
#include <radio_mac.h>

/*! Each packet can contain at most 18 bytes of payload. */
#define RADIO_LINK_PAYLOAD_SIZE 18
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/dma/dma.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <cc2511_map.h>
#include <cc2511_types.h>
#include "dma.h"
#include <dma.h>

DMA14_CONFIG XDATA dmaConfig;

Expand Down
4 changes: 2 additions & 2 deletions libraries/src/radio_com/radio_com.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "radio_link.h"
#include "radio_com.h"
#include <radio_link.h>
#include <radio_com.h>

static uint8 DATA txBytesLoaded = 0;
static uint8 DATA rxBytesLeft = 0;
Expand Down
4 changes: 2 additions & 2 deletions libraries/src/radio_mac/radio_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
* than a hardcoded constant, but makes this MAC layer much more reusable.
*/

#include "radio_mac.h"
#include <radio_mac.h>
#include <cc2511_map.h>
#include <dma.h>
#include <radio_registers.h>

#include "random.h"
#include <random.h>

#define MAX_LATENCY_OF_STROBE 10

Expand Down
2 changes: 1 addition & 1 deletion libraries/src/radio_registers/radio_registers.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "radio_registers.h"
#include <radio_registers.h>
#include <cc2511_map.h>

void radioRegistersInit()
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/random/random.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <cc2511_types.h>
#include <cc2511_map.h>
#include "random.h"
#include <random.h>

/* Returns a new random number. Warning: this is not reentrant. It is possible that this function
* could occasionally return the same random number to an ISR caller as it returns to a main loop
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/random/random_from_adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <cc2511_types.h>
#include <cc2511_map.h>
#include "random.h"
#include <random.h>

static uint8 adcReadTemp(void)
{
Expand Down
6 changes: 3 additions & 3 deletions libraries/src/usb/green_led.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "usb.h"
#include "board.h"
#include "time.h"
#include <usb.h>
#include <board.h>
#include <time.h>

// TODO: make the green LED blink when there is USB traffic

Expand Down
2 changes: 1 addition & 1 deletion libraries/src/usb/usb.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "usb.h"
#include <usb.h>
#include <cc2511_map.h>
#include <cc2511_types.h>
#include <board.h>
Expand Down

0 comments on commit b7d8d3e

Please sign in to comment.