Bitwig Studio and busy MIDI controllers on Linux

There have been a few attempts to be able to use MIDI device controllers in Bitwig Studio running on Linux. For me none of them worked one by one. Instead it seems that I needed a combination of a couple of the methods. I used Cadence to do a couple of configurations for Jack: The …

Simple function-call tracing in C++

There are many ways to do function-call tracing in C++, where the simplest method is to just print “Entering function X” when entering the function, and right before returning print “Leaving function X”. It’s a lot of work though, especially if the function have multiple return statements. One solution to the problem above is to …