Revision: 10207
http://pure-data.svn.sourceforge.net/pure-data/?rev=10207&view=rev
Author: eighthave
Date: 2008-07-22 15:30:52 +0000 (Tue, 22 Jul 2008)
Log Message:
-----------
removed CFRunLoopRunInMode() in clock function since it doesn't seem to do anything there
Modified Paths:
--------------
trunk/externals/io/aka.wiiremote/aka.wiiremote.c
Modified: trunk/externals/io/aka.wiiremote/aka.wiiremote.c
===================================================================
--- trunk/externals/io/aka.wiiremote/aka.wiiremote.c 2008-07-22 15:23:12 UTC (rev 10206)
+++ trunk/externals/io/aka.wiiremote/aka.wiiremote.c 2008-07-22 15:30:52 UTC (rev 10207)
@@ -538,12 +538,9 @@
t_atom status;
connection = wiiremote_isconnected(x->wiiremote);
-
+
if (x->connected == false && connection == true) // if the device is connected...
{
-#ifdef PD
- CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true);
-#endif
wiiremote_getstatus(x->wiiremote);
x->connected = true;
SETLONG(&status, 1);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 10205
http://pure-data.svn.sourceforge.net/pure-data/?rev=10205&view=rev
Author: eighthave
Date: 2008-07-22 15:04:33 +0000 (Tue, 22 Jul 2008)
Log Message:
-----------
added #define BLUETOOTH_VERSION_USE_CURRENT to get rid of "deprecated"
warnings based on this bluetooth-dev post:
http://lists.apple.com/archives/Bluetooth-dev/2007/Mar/msg00024.html
Modified Paths:
--------------
trunk/externals/io/aka.wiiremote/wiiremote.h
Modified: trunk/externals/io/aka.wiiremote/wiiremote.h
===================================================================
--- trunk/externals/io/aka.wiiremote/wiiremote.h 2008-07-22 14:07:12 UTC (rev 10204)
+++ trunk/externals/io/aka.wiiremote/wiiremote.h 2008-07-22 15:04:33 UTC (rev 10205)
@@ -2,6 +2,8 @@
// Copyright by Masayuki Akamatsu
// Based on "DarwiinRemote" by Hiroaki Kimura
+#define BLUETOOTH_VERSION_USE_CURRENT // gets rid of deprecated warnings
+
#include <CoreFoundation/CoreFoundation.h>
#include <IOBluetooth/Bluetooth.h>
#include <IOBluetooth/IOBluetoothUserLib.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.