Skip to content

Commit

Permalink
linux friendly directory and file names.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathertel committed Sep 8, 2015
1 parent ca2d351 commit 817dea7
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/RDA5807M.cpp
Expand Up @@ -15,10 +15,10 @@
/// * 05.08.2014 created.


#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

#include <RADIO.h>
#include <radio.h>
#include <RDA5807M.h>

// ----- Register Definitions -----
Expand Down
2 changes: 1 addition & 1 deletion src/RDA5807M.h
Expand Up @@ -28,7 +28,7 @@
#ifndef RDA5807M_h
#define RDA5807M_h

#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

#include <radio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/RDSParser.h
Expand Up @@ -22,7 +22,7 @@
#ifndef __RDSPARSER_H__
#define __RDSPARSER_H__

#include <arduino.h>
#include <Arduino.h>

/// callback function for passing a ServicenName
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion src/SI4703.cpp
Expand Up @@ -18,7 +18,7 @@
#include <Arduino.h>
#include <Wire.h> // The chip is controlled via the standard Arduiino Wire library and the IIC/I2C bus.

#include <RADIO.h> // Include the common radio library interface
#include <radio.h> // Include the common radio library interface
#include <SI4703.h>

// ----- Definitions for the Wire communication
Expand Down
2 changes: 1 addition & 1 deletion src/SI4703.h
Expand Up @@ -19,7 +19,7 @@
#ifndef SI4703_h
#define SI4703_h

#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

#include <radio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/SI4705.cpp
Expand Up @@ -18,7 +18,7 @@
#include <Arduino.h>
#include <Wire.h> // The chip is controlled via the standard Arduiino Wire library and the IIC/I2C bus.

#include <RADIO.h> // Include the common radio library interface
#include <radio.h> // Include the common radio library interface
#include <SI4705.h>

// ----- Definitions for the Wire communication
Expand Down
2 changes: 1 addition & 1 deletion src/SI4705.h
Expand Up @@ -24,7 +24,7 @@
#ifndef SI4705_h
#define SI4705_h

#include <arduino.h>
#include <Arduino.h>

// The wire library is used for the communication with the radio chip.
#include <Wire.h>
Expand Down
2 changes: 1 addition & 1 deletion src/TEA5767.cpp
Expand Up @@ -23,7 +23,7 @@
#include <Arduino.h>
#include <Wire.h> // The chip is controlled via the standard Arduiino Wire library and the IIC/I2C bus.

#include <RADIO.h> // Include the common radio library interface
#include <radio.h> // Include the common radio library interface
#include <TEA5767.h>

// ----- Definitions for the Wire communication
Expand Down
2 changes: 1 addition & 1 deletion src/TEA5767.h
Expand Up @@ -20,7 +20,7 @@
#ifndef TEA5767_h
#define TEA5767_h

#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

#include <radio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/newchip.cpp
Expand Up @@ -17,7 +17,7 @@
#include <Arduino.h>
#include <Wire.h> // The chip is controlled via the standard Arduiino Wire library and the IIC/I2C bus.

#include <RADIO.h> // Include the common radio library interface
#include <radio.h> // Include the common radio library interface
#include <newchip.h>

// ----- Definitions for the Wire communication
Expand Down
2 changes: 1 addition & 1 deletion src/newchip.h
Expand Up @@ -19,7 +19,7 @@
#ifndef newchip_h
#define newchip_h

#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

#include <radio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/radio.h
Expand Up @@ -52,7 +52,7 @@
#ifndef __RADIO_h__
#define __RADIO_h__

#include <arduino.h>
#include <Arduino.h>
#include <Wire.h>

// The DEBUG_xxx Macros enable Information to the Serial port.
Expand Down

0 comments on commit 817dea7

Please sign in to comment.