aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefile5
-rw-r--r--wiimote.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/makefile b/makefile
index 1258850..b9cda41 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,4 @@
NAME=wiimote
-SYM=wiimote
# If you want to use a customized Pd, then define a $PD_PATH variable.
# Otherwise, the Pd must be installed on the system
@@ -25,8 +24,8 @@ PD_DOC_PATH := /usr/local/lib/pd/doc
endif
-LIBS = $(LIBCWIID_PATH)/libcwiid.a -lbluetooth -lpthread
-#LIBS = -lcwiid -lbluetooth -lpthread
+#LIBS = $(LIBCWIID_PATH)/libcwiid.a -lbluetooth -lpthread
+LIBS = -lcwiid -lbluetooth -lpthread
current: pd_linux
diff --git a/wiimote.c b/wiimote.c
index 94a1930..95fa044 100644
--- a/wiimote.c
+++ b/wiimote.c
@@ -479,8 +479,12 @@ void cwiid_doConnect(t_wiimote *x, t_symbol *addr, t_symbol *dongaddr)
}
// connect:
-
+#if 0
+#warning florian, you cannot just change the cwiid_open() function
x->wiimote = cwiid_open(&bdaddr, dong_bdaddr_ptr, CWIID_FLAG_MESG_IFC);
+#else
+ x->wiimote = cwiid_open(&bdaddr, CWIID_FLAG_MESG_IFC);
+#endif
if(NULL==x->wiimote) {
post("wiimote error: unable to connect");