gtrainavicius

Results 14 comments of gtrainavicius

And one more test case: ```cpp void test() // static used in a comment on the same line { } ``` gets forward declared as: ```cpp static void test(); ```

As promised, here's the macros: https://github.com/BlokasLabs/USBMIDI/blob/master/src/usbmidi.h#L54 And here's the default instantiation using the weak attribute: https://github.com/BlokasLabs/USBMIDI/blob/master/src/usbmidi_vusb.cpp#L199 As it's pretty difficult for Library developers to provide 'compile time' customization via preprocessor...

Is 50 kHz the best it can do when slowed down? In all cases when running the test, the system was otherwise idle - if requesting 200kHz, the system managed...

I see, I assumed the communication or some other drivers would be handling clock changes not to impact the communication too much. Is there something that can be added to...

Full duplex mode is not working with Pisound, for example, starting audio output in one terminal: ``` speaker-test -c2 -D hw:pisound -r 48000 -t sine ``` Then starting arecord: ```...

I notice that on Pi 5 the SPI speed seems to be constant, regardless of CPU scaling and current CPU frequency, while Pi 4 and earlier models keep changing the...

1. Works as a workaround for now, thank you. 2. The built-in blob is based on this: https://github.com/BlokasLabs/pisound/blob/master/pisound-module/pisound-overlay.dts - the `i2s_clock_consumer` must have happened in your kernel tree without us...

Where can I find the compiled hat_map.dtb?

@pelwell, the new hat_map.dtb fixes the issue for Pisound. How should we release this fix to our users? Tell them to upgrade their kernel to some higher version than X...

Hey, we found that Pi 5 keeps a constant SPI speed, regardless of current CPU scaling, we must use a different speed for Pi 5 based models for our MIDI...