JBBoardに接続したモーター2つをRCBControllerでコントロールするテストです。

Dependencies:   FatFileSystem TB6612FNG2 mbed

Fork of JBB_BTLE_Test by Jksoft Blue mbed Board Developer

Revision:
1:6078e430af82
Parent:
0:1ed23ab1345f
--- a/BTstack/run_loop_private.h	Tue Jun 26 14:27:45 2012 +0000
+++ b/BTstack/run_loop_private.h	Thu Feb 07 14:01:01 2013 +0000
@@ -42,7 +42,7 @@
 
 #pragma once
 
-#include <btstack/run_loop.h>
+#include "btstack/run_loop.h"
 
 #ifdef HAVE_TIME
 #include <sys/time.h>
@@ -58,11 +58,11 @@
 
 // internal use only
 typedef struct {
-	void (*init)(void);
-	void (*add_data_source)(data_source_t *dataSource);
-	int  (*remove_data_source)(data_source_t *dataSource);
-	void (*add_timer)(timer_source_t *timer);
-	int  (*remove_timer)(timer_source_t *timer); 
-	void (*execute)(void);
-	void (*dump_timer)(void);
+    void (*init)(void);
+    void (*add_data_source)(data_source_t *dataSource);
+    int  (*remove_data_source)(data_source_t *dataSource);
+    void (*add_timer)(timer_source_t *timer);
+    int  (*remove_timer)(timer_source_t *timer); 
+    void (*execute)(void);
+    void (*dump_timer)(void);
 } run_loop_t;