Library for MAXREFDES131 OneWire GridEYE sensor interface

Dependents:   MAXREFDES131_Qt_Demo MAXREFDES130_131_Demo

Files at this revision

API Documentation at this revision

Comitter:
j3
Date:
Mon Sep 26 15:08:17 2016 -0700
Parent:
11:6fde9f875d0c
Commit message:
Fix include paths

Changed in this revision

API_Level_2/grideye_api_lv2.c Show annotated file Show diff for this revision Revisions of this file
OWGridEye.cpp Show annotated file Show diff for this revision Revisions of this file
OWGridEye.h Show annotated file Show diff for this revision Revisions of this file
diff -r 6fde9f875d0c -r 4b7ac3b21d91 API_Level_2/grideye_api_lv2.c
--- a/API_Level_2/grideye_api_lv2.c	Fri Aug 12 21:04:39 2016 +0000
+++ b/API_Level_2/grideye_api_lv2.c	Mon Sep 26 15:08:17 2016 -0700
@@ -1,8 +1,7 @@
 /*******************************************************************************
 	include file
 *******************************************************************************/
-#include	"API_Level_2/grideye_api_lv2.h"
-
+#include "API_Level_2/grideye_api_lv2.h"
 
 /*******************************************************************************
 	macro definition
diff -r 6fde9f875d0c -r 4b7ac3b21d91 OWGridEye.cpp
--- a/OWGridEye.cpp	Fri Aug 12 21:04:39 2016 +0000
+++ b/OWGridEye.cpp	Mon Sep 26 15:08:17 2016 -0700
@@ -31,7 +31,7 @@
 **********************************************************************/
 
 
-#include "OWGridEye/OWGridEye.h"
+#include "OWGridEye.h"
 
 
 //*********************************************************************
diff -r 6fde9f875d0c -r 4b7ac3b21d91 OWGridEye.h
--- a/OWGridEye.h	Fri Aug 12 21:04:39 2016 +0000
+++ b/OWGridEye.h	Mon Sep 26 15:08:17 2016 -0700
@@ -36,14 +36,14 @@
 
 
 #include "mbed.h"
-#include "OneWire/Slaves/Bridges/Bridges.h"
-#include "OneWire/Slaves/Switches/Switches.h"
+#include "Slaves/Bridges/Bridges.h"
+#include "Slaves/Switches/Switches.h"
 
 using namespace OneWire;
 
-#include "OWGridEye/API_Level_1/grideye_api_lv1.h"
-#include "OWGridEye/API_Level_2/grideye_api_lv2.h"
-#include "OWGridEye/API_Level_3/grideye_api_lv3.h"
+#include "API_Level_1/grideye_api_lv1.h"
+#include "API_Level_2/grideye_api_lv2.h"
+#include "API_Level_3/grideye_api_lv3.h"
 
 
 /**