sehrgut

Results 35 comments of sehrgut

I just got one of these new-model pedals as well. Here's the sequence of operations I performed: 1. Start Wireshark listening to new USB devices only 2. Plug in pedal...

Hey, I just saw this! I think I missed the notification when it came around originally, and saw it because I was looking at the cairo/canvas install issue someone else...

For anyone who reads this after me, the typedef I had to do for an Arduino Leonardo rev. 3 board is: `typedef midi::MidiInterface MidiInterface;` in contrast to the typedef from...

I'm trying to pass it into another class as a dependency, so that the class can have a pointer to the MIDI interface to send MIDI messages even if it...

@lathoub Would it be possible to template some form of reference that could be passed around? Really all I'm trying to do is set up a MidiInterface once and pass...

@kisse66 Yeah, the template strategy isn't the issue, because all it does is ensure those configuration variants become compile-time types. If we could get type references at compile time, what...

I suppose I could do that, but it does extend the overhead and code size. I guess I was hoping there would be some way to define a macro that...

I'm wondering if something like this would work: ``` #define MIDI_TYPEOF_INSTANCE(Type) \ MIDI_NAMESPACE::MidiInterface #define MIDI_TYPEOF_DEFAULT_INSTANCE() \ MIDI_TYPEOF_INSTANCE(HardwareSerial) ``` This seems way too simple to work in the general case, so...

I'll see about sanitizing the dataset for internal privacy and try building a repro. On Wed, Jun 24, 2020, 6:09 AM Worms David wrote: > I could be due to...

I discovered this behaviour when I noticed that an Arduino sequencer I'm writing behaves differently controlling a Volca FM than controlling Dexed. On startup, it sends CC=123, and that does...