threa4ctor
threa4ctor
I overlooked this PR in rtmidi which attempts to fix this issue: https://github.com/thestk/rtmidi/pull/220
Same here for building on Arch Linux.
For clarification: this is how it looks like when I send data in flutter. ```dart int chunkSize = _syxData.indexWhere((element) => element == 0xf7) + 1; int chunks = (_syxData.lengthInBytes %...
Reading more into CoreMIDI, it looks like an absolute nightmare. It looks like [AudioKit](https://github.com/AudioKit/AudioKit) is the defacto standard for avoiding the pain of debugging CoreMIDIs C APIs. Do you think...
Playing with the size of MIDIPacketList didn't helped. I suppose that the problem is with the way how the memory is allocated. I kinda replaced the current implementation for sending...
I attached an archive with the file I'm sending. In the code I split the data into 4107 byte chunks because the target only accepts this page size. [firmware.syx.zip](https://github.com/InvisibleWrench/FlutterMidiCommand/files/6912981/firmware.syx.zip)
> @Noir- I think suggesting moving to completely new API because of not being able to initially modify 1 function call to work is a bit extreme. > > Just...
Great workarounds guys! But please @etienne-korg could you have a look into this? If you don't have the time to fix it, just open the sources and we would be...
I'm not very deep into Linux Kernel development so feel free to correct me. But I highly doubt that copying the header files would work. The header files are supposed...
Yeah it works on Linux. But it's only the stereo sum which is pretty useless for the use cases most people have in mind when they want to use this...