Ralf Kistner

Results 157 comments of Ralf Kistner

I'm having the same issue, my system configuration is the following: Ubuntu 8.04 Kernel 2.6.24-24-server ruby 1.9.1p376 god 0.11.0 Trying to stop a process with god causes god to hang...

Using polling did not solve my issue. When I try to stop my watches, god almost always hangs on one of the processes, with the following being logged: ``` INFO:...

I'm not a maintainer on this project, so can't help unfortunately.

This is likely because it is attempting to read the file as a utf-8 string, instead of a raw binary Buffer. Should be fixed by #267.

The `extra-google-m2repository` and `extra-android-m2repository` SDK components creates local Maven repositories in these two locations for exactly this purpose: ``` $ANDROID_HOME/extras/google/m2repository $ANDROID_HOME/extras/android/m2repository ``` I believe this is what the Gradle build...

Ok, I see it only has the play services and support libraries. I was under the impression that it contained more (e.g. the Android platform jars as well). In that...

Make sure to follow the installation instructions in the Readme: https://github.com/rkistner/arcore#installation-and-usage It's also possible that there is an incompatibility with newer versions of the Arduino IDE - try a 1.5.x...

The USB code specific to MIDI (this project) is in these two new files: https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/MIDIUSB.cpp https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/MIDIUSB.h As well as changes in these files: https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/USBAPI.h https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/USBDesc.h https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/USBCore.cpp https://github.com/rkistner/arcore/blob/master/hardware/avr/cores/arcore/USBCore.h Nothing is implemented...

I haven't tried this myself yet, but it should be simple. According to the spec (http://www.usb.org/developers/docs/devclass_docs/midi10.pdf, page 16 and the examples on page 17), a message in MIDI-USB is _always_...

@FrankBrook Thanks for the explanation. The `CIN=0xF` is an interesting case - it seems like each byte in the MIDI stream is packaged in a separate 4-byte MIDI-USB event. I...