dagargo / elektroid

Sample and MIDI device manager
https://dagargo.github.io/elektroid/
GNU General Public License v3.0
223 stars 32 forks source link

segmentation fault on copying samples on DT1.50 #100

Closed marco-polo-github closed 1 year ago

marco-polo-github commented 1 year ago

Hello all, copying .wav samples and folders was working before I have updated to v1.50, and pulled recent git commits. I've pulled the latest updates with git, then make clean, and all the commands you describe, then recompiled again. But I am getting a segmentation fault. The wav files will not be listed for download in the progress window below in Elektroid. I have also deleted my binaries and cloned from the repo and compiled the sources again, with the same problem. I am using the recent Digitakt 1.50 firmware. To copy Projects with Elektroid works fine. Do you know what happens here? Let me know if I can provide more details.

dagargo commented 1 year ago

I noticed this too but I had no confirmation till now.

I didn't really research much because it's failing as well with Elektron Transfer. The issue is in the MIDI SysEx messages sent by the device. For some reason there are some zeroes in between the message bytes and these cause Elektroid to believe the result is a directory so it falls in a loop.

I'll open a ticket to Elektron and report back here.

But Elektroid should definitely not crash so I'll try to fix it. I haven't tried yet because I didn't want to go back to the previous version to get the working messages.

Edit: After taking a deeper look, the messages look right. Crossed out misleading information.

dagargo commented 1 year ago

Looks like the errors on Transfer is unrelated to this.

I think the underlying cause is a bug in the SysEx message response when reading a directory that doesn't exists. Before 1.50, there was no content; but now it replies with the content of another directory, so Elektroid believes there is something there. (This is used when trying to determine if a path points to a file or a directory.)

I'm currently looking at a solution to avoid the crash.

dagargo commented 1 year ago

Just another proof on the directory bug direction. The CLI doesn't perform additional checks. It just tries to download from the provided path and just works.

$ elektroid-cli elektron-sample-dl "1:/Elektron SP/Aotearoa/Purerehua-MM"
$ ls -l Purerehua-MM.wav 
-rw-r--r-- 1 user user 566288 mar 28 14:47 Purerehua-MM.wav
dagargo commented 1 year ago

Transfer downloads fail for a totally different reason. See #101.

marco-polo-github commented 1 year ago

I also thought the directory rights or something is wrong during the download. But also a single sample transfer failed on my setup. I will update the current versions here today afternoon and try it again, also with the recent Elektron Transfer. Which IDE setup + tools do you use to debug your code? vscode?

dagargo commented 1 year ago

When I was investigating this issue I found that the reason for the crashing was a misunderstanding of the PATH_MAX constant. I thought it was the maximum allowed length of a system path but this is not true.

I decided to fix this limitation before trying to fix the directory issue and I've already fixed it but I need to test it before pushing the code.

With this fixed, Elektroid doesn't crash but still falls in a loop due to the alleged directory bug. (Still to be confirmed by Elektron.)

But also a single sample transfer failed on my setup.

The GUI will always fail but I think the CLI will always succeed if the path points to a sample. Or does it fail the CLI for you? If so, run elektroid-cli with -vv and post here the output.

Which IDE setup + tools do you use to debug your code?

I use the Atom editor and debug with GDB.

dagargo commented 1 year ago

What I mean by "directoy bug" is that the Digitakt replies to a non existing directory listing with a non empty response, which make Elektroid believe that path is a directory, when it really isn't.

Elektroid contains some integration tests that can be run this way. This was working with 1.40B.

$ TEST_DEVICE=0 TEST_CONNECTOR_FILESYSTEM=elektron_sample make check

Take a look to the README.md for more information about this.

marco-polo-github commented 1 year ago

This is my commit id: commit 8ba205896d1a847101cd07788d2b5e15e285f964 (HEAD -> master, origin/master, origin/HEAD) so the most recent.

Here are some outputs:

> elektroid-cli ld
0: hw:1,0,0 hw:1,0,0: Scarlett 18i8 USB, Scarlett 18i8 USB MIDI 1
1: hw:3,0,0 hw:3,0,0: Elektron Digitakt, Elektron Digitakt MIDI 1

> elektroid-cli info 1
Elektron Digitakt; version: 1.50; description: Digitakt; connector: elektron; filesystems: sample,data,project,sound

> elektroid-cli df 1
Storage               Size            Used       Available       Use%
+Drive           959.50MiB       412.81MiB       546.69MiB     43.02%
RAM               64.00MiB         7.34MiB        56.66MiB     11.47%

> elektroid-cli elektron-sample-dl "1:/TwinPeaks/BASS_C3"
> ls BASS_C3.wav
BASS_C3.wav

Command line download seems to work as shown above. What I also experienced when I call the electron-cli is, that the play and stop is set at the same time when the command is executed. Also trying the sample download on Elektroid, changed to to (play+stop=pause right?) So it is changing this default state.

marco-polo-github commented 1 year ago

This is the log output:

This is the log output: ``` > elektroid-cli elektron-sample-dl "1:/TwinPeaks/BASS_C3" -vv DEBUG:elektroid-cli.c:797:(main): Connector: "elektron"; filesystem: "sample"; operation: "dl" DEBUG:backend_alsa.c:612:(backend_get_system_subdevices): Adding hw:1 (name 'Scarlett 18i8 USB', subname 'Scarlett 18i8 USB MIDI 1')... DEBUG:backend_alsa.c:612:(backend_get_system_subdevices): Adding hw:3 (name 'Elektron Digitakt', subname 'Elektron Digitakt MIDI 1')... DEBUG:backend.c:346:(backend_init): Initializing backend (ALSA) to 'hw:3,0,0'... DEBUG:backend_alsa.c:85:(backend_init_int): Setting blocking mode... DEBUG:backend_alsa.c:97:(backend_init_int): Stopping device... DEBUG:connector.c:135:(connector_init_backend): Connector elektron matches the device DEBUG:connector.c:174:(connector_init_backend): Testing elektron connector... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (13): f0 00 20 3c 10 00 00 00 00 00 00 01 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (5): 00 00 00 00 01 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (75): f0 00 20 3c 10 00 04 01 5d 00 00 01 0c 2b 00 01 02 03 05 04 06 07 00 50 52 51 10 13 11 12 00 20 21 22 23 28 30 31 00 32 36 40 41 42 46 17 00 18 19 29 53 54 55 56 00 57 58 59 5a 5b 5c 5d 00 5e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (59): 01 5d 00 00 81 0c 2b 01 02 03 05 04 06 07 50 52 51 10 13 11 12 20 21 22 23 28 30 31 32 36 40 41 42 46 17 18 19 29 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 44 69 67 69 74 61 6b 74 00 DEBUG:connectors/elektron.c:2071:(elektron_configure_device): Failed to open file “/home/user/.config/elektroid/elektron/devices.json”: No such file or directory DEBUG:connectors/elektron.c:2077:(elektron_configure_device): Falling back to /usr/local/share/elektroid/elektron/devices.json... DEBUG:connectors/elektron.c:2136:(elektron_configure_device): Device 12 found DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (13): f0 00 20 3c 10 00 00 00 01 00 00 02 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (5): 00 01 00 00 02 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (25): f0 00 20 3c 10 00 04 01 5e 00 01 02 30 30 00 38 34 00 31 2e 35 30 00 00 f7 DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (15): 01 5e 00 01 82 30 30 38 34 00 31 2e 35 30 00 DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (13): f0 00 20 3c 10 00 00 00 02 00 00 03 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (5): 00 02 00 00 03 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (18): f0 00 20 3c 10 00 07 01 5f 00 02 03 1b 19 60 68 4d f7 DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (9): 01 5f 00 02 83 9b 99 e8 cd DEBUG:connectors/elektron.c:2269:(elektron_handshake): UID: cde8999b DEBUG:connector.c:178:(connector_init_backend): Using elektron connector... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (35): f0 00 20 3c 10 00 00 00 03 00 00 30 2f 54 00 77 69 6e 50 65 61 6b 00 73 2f 42 41 53 53 5f 00 43 33 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (24): 00 03 00 00 30 2f 54 77 69 6e 50 65 61 6b 73 2f 42 41 53 53 5f 43 33 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (23): f0 00 20 3c 10 00 04 01 60 00 03 30 01 00 01 00 09 0e 00 0d 16 3c f7 DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (14): 01 60 00 03 b0 01 00 00 09 0e 00 0d 16 bc DEBUG:connectors/elektron.c:1750:(elektron_download_smplrw): 857788 frames to download DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 04 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 00 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 04 00 00 32 00 00 09 0e 00 00 20 00 00 00 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 61 00 04 32 01 00 00 00 09 0e 00 00 20 00 00 00 00 00 00 00 00 20 00 00 00 00 00 00 00 0d 06 16 7c 00 00 3b 00 00 00 00 00 00 00 00 00 00 00 7f 00 00 00 00 00 00 00 00... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 61 00 04 b2 01 00 00 09 0e 00 00 20 00 00 00 00 00 00 00 20 00 00 00 00 00 00 0d 16 7c 00 00 bb 80 00 00 00 00 00 00 00 00 7f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00... DEBUG:connectors/elektron.c:1794:(elektron_download_smplrw): Loop start at 0, loop end at 0 DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 05 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 00 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 05 00 00 32 00 00 09 0e 00 00 20 00 00 00 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 62 00 05 32 01 00 00 00 09 0e 00 00 20 00 00 00 00 20 00 00 00 40 14 00 30 25 30 51 31 08 0a 31 4f 31 1e 31 79 32 11 5b 32 49 33 3b 33 2e 08 34 28 34 1c 35 12 35 51 06... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 62 00 05 b2 01 00 00 09 0e 00 00 20 00 00 00 20 00 00 00 40 00 30 a5 30 d1 31 08 31 4f 31 9e 31 f9 32 5b 32 c9 33 3b 33 ae 34 28 34 9c 35 12 35 86 35 f4 36 61 36 c3 37 20 37 83 37 de 38 36... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 06 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 00 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 06 00 00 32 00 00 09 0e 00 00 20 00 00 00 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 63 00 06 32 01 00 00 00 09 0e 00 00 20 00 00 00 00 40 00 00 00 60 2a 00 7b 43 7b 59 7b 72 7d 7b 18 7b 50 7c 1b 7c 6f 03 7d 0e 7d 3f 7e 1e 68 7f 27 00 65 02 50 03 55 64... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 63 00 06 b2 01 00 00 09 0e 00 00 20 00 00 00 40 00 00 00 60 00 fb 43 fb 59 fb 72 fb 98 fb d0 fc 1b fc 83 fd 0e fd bf fe 9e ff a7 00 e5 02 50 03 e4 05 a8 07 9e 09 b3 0b e9 0e 3f 10 a5 13 1a... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 07 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 00 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 07 00 00 32 00 00 09 0e 00 00 20 00 00 00 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 64 00 07 32 01 00 00 00 09 0e 00 00 20 00 01 00 00 60 00 00 00 00 11 00 07 0a 07 37 06 6a 20 06 29 06 6d 06 3b 06 15 15 05 78 05 5d 05 50 2a 05 4f 05 4f 05 5d 05 50 6b... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 64 00 07 b2 01 00 00 09 0e 00 00 20 00 00 00 60 00 00 00 80 00 07 8a 07 37 06 ea 06 a9 06 6d 06 3b 06 15 05 f8 05 dd 05 d0 05 cf 05 cf 05 dd 05 eb 05 fe 06 17 06 2e 06 49 06 61 06 75 06 86... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 08 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 00 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 08 00 00 32 00 00 09 0e 00 00 20 00 00 00 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 65 00 08 32 01 00 00 00 09 0e 00 00 20 00 11 00 00 00 00 00 00 20 10 00 0c 75 0c 2d 0b 65 2a 0a 19 09 48 08 69 08 01 01 07 0e 06 09 04 75 29 03 4e 02 17 01 4b 7f 7a 71... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 65 00 08 b2 01 00 00 09 0e 00 00 20 00 00 00 80 00 00 00 a0 00 0c f5 0c 2d 0b 65 0a 99 09 c8 08 e9 08 01 07 0e 06 09 04 f5 03 ce 02 97 01 4b ff f1 fe 81 fd 04 fb 79 f9 e2 f8 3e f6 8f f4 d7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 09 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 00 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 09 00 00 32 00 00 09 0e 00 00 20 00 00 00 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 66 00 09 32 01 00 00 00 09 0e 00 00 20 00 11 00 00 20 00 00 00 40 3f 00 5f 6c 5f 51 5f 40 7f 5f 2f 5f 2e 5f 34 5f 7e 3c 5f 56 5f 72 60 16 57 60 43 60 79 60 35 60 6f 79... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 66 00 09 b2 01 00 00 09 0e 00 00 20 00 00 00 a0 00 00 00 c0 00 df ec df d1 df c0 df af df ae df b4 df bc df d6 df f2 e0 16 e0 43 e0 79 e0 b5 e0 f9 e1 44 e1 8e e1 de e2 3a e2 97 e2 f8 e3 58... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 00 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0a 00 00 32 00 00 09 0e 00 00 20 00 00 00 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 67 00 0a 32 01 00 00 00 09 0e 00 00 20 00 11 00 00 40 00 00 00 60 2b 00 55 43 56 74 57 26 75 58 62 5a 26 5b 74 5c 6e 46 5e 27 5f 0f 61 03 77 62 00 64 01 65 12 67 3a 25... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 67 00 0a b2 01 00 00 09 0e 00 00 20 00 00 00 c0 00 00 00 e0 00 d5 43 d6 74 d7 a6 d8 e2 da 26 db 74 dc c6 de 27 df 8f e1 03 e2 80 e4 01 e5 92 e7 25 e8 c3 ea 6b ec 17 ed cd ef 83 f1 3f f3 02... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 00 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0b 00 00 32 00 00 09 0e 00 00 20 00 00 00 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 68 00 0b 32 01 00 00 00 09 0e 00 00 20 00 10 00 00 60 00 00 01 00 3a 00 65 2f 65 6c 65 2d 7d 64 6e 64 31 64 77 64 2f 3d 64 04 63 4d 63 1d 55 63 69 63 37 63 0f 62 7e 65... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 68 00 0b b2 01 00 00 09 0e 00 00 20 00 00 00 e0 00 00 01 00 00 e5 af e5 6c e5 2d e4 ee e4 b1 e4 77 e4 3d e4 04 e3 cd e3 9d e3 69 e3 37 e3 0f e2 e5 e2 be e2 96 e2 77 e2 55 e2 38 e2 1b e2 03... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 01 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0c 00 00 32 00 00 09 0e 00 00 20 00 00 01 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 69 00 0c 32 01 00 00 00 09 0e 00 00 20 00 00 00 01 00 00 00 01 20 11 00 43 3e 44 3a 44 2e 02 45 1a 45 7e 45 58 46 05 2f 46 79 46 3d 46 7b 02 47 30 47 5c 47 00 47 55 1a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 69 00 0c b2 01 00 00 09 0e 00 00 20 00 00 01 00 00 00 01 20 00 43 be 44 3a 44 ae 45 1a 45 7e 45 d8 46 2f 46 79 46 bd 46 fb 47 30 47 5c 47 80 47 9a 47 b3 47 bc 47 c4 47 c6 47 b7 47 a7 47 92... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 01 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0d 00 00 32 00 00 09 0e 00 00 20 00 00 01 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6a 00 0d 32 01 00 00 00 09 0e 00 00 20 00 00 00 01 20 00 00 01 40 04 00 0f 30 0f 47 10 5a 28 10 73 11 0b 12 1c 12 44 31 13 48 13 58 14 6c 28 14 7d 15 06 16 14 16 44 21... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6a 00 0d b2 01 00 00 09 0e 00 00 20 00 00 01 20 00 00 01 40 00 0f 30 0f c7 10 5a 10 f3 11 8b 12 1c 12 b1 13 48 13 d8 14 6c 14 fd 15 86 16 14 16 a1 17 2b 17 b3 18 3e 18 c2 19 43 19 c9 1a 4a... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 01 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0e 00 00 32 00 00 09 0e 00 00 20 00 00 01 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6b 00 0e 32 01 00 00 00 09 0e 00 00 20 00 00 00 01 40 00 00 01 60 11 00 20 39 20 3d 1f 3f 08 1f 40 1e 3e 1e 38 1d 44 34 1d 2c 1c 21 1c 12 28 1b 02 1a 72 1a 5d 19 44 4a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6b 00 0e b2 01 00 00 09 0e 00 00 20 00 00 01 40 00 00 01 60 00 20 b9 20 3d 1f bf 1f 40 1e be 1e 38 1d b4 1d 2c 1c a1 1c 12 1b 82 1a f2 1a 5d 19 ca 19 32 18 9a 18 03 17 60 16 c3 16 27 15 8c... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 0f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 01 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 0f 00 00 32 00 00 09 0e 00 00 20 00 00 01 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6c 00 0f 32 01 00 00 00 09 0e 00 00 20 00 01 00 01 60 00 00 01 00 14 00 19 6c 19 25 19 62 08 19 14 18 4a 18 7f 18 14 2d 17 5c 17 0b 17 2e 28 16 55 16 00 16 23 15 41 44... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6c 00 0f b2 01 00 00 09 0e 00 00 20 00 00 01 60 00 00 01 80 00 19 ec 19 a5 19 62 19 14 18 ca 18 7f 18 2d 17 dc 17 8b 17 2e 16 d5 16 80 16 23 15 c4 15 64 15 04 14 9e 14 3a 13 d1 13 6b 12 fc... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 10 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 01 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 10 00 00 32 00 00 09 0e 00 00 20 00 00 01 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6d 00 10 32 01 00 00 00 09 0e 00 00 20 00 11 00 01 00 00 00 01 20 2f 00 72 3a 71 70 71 27 57 71 5b 71 10 70 4a 70 2f 7c 70 32 6f 65 6f 19 57 6f 4e 6f 02 6e 34 6e 2f 6a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6d 00 10 b2 01 00 00 09 0e 00 00 20 00 00 01 80 00 00 01 a0 00 f2 3a f1 f0 f1 a7 f1 5b f1 10 f0 ca f0 7c f0 32 ef e5 ef 99 ef 4e ef 02 ee b4 ee 6a ee 1f ed ce ed 83 ed 37 ec f0 ec 9f ec 51... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 11 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 01 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 11 00 00 32 00 00 09 0e 00 00 20 00 00 01 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6e 00 11 32 01 00 00 00 09 0e 00 00 20 00 11 00 01 20 00 00 01 40 14 00 03 6d 03 79 04 06 00 04 17 04 25 04 2c 04 00 3d 04 50 04 64 04 75 2a 04 0a 04 1d 04 33 04 54 4a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6e 00 11 b2 01 00 00 09 0e 00 00 20 00 00 01 a0 00 00 01 c0 00 03 ed 03 f9 04 06 04 17 04 25 04 2c 04 3d 04 50 04 64 04 75 04 8a 04 9d 04 b3 04 ca 04 e2 04 f5 05 11 05 2a 05 46 05 5e 05 7b... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 12 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 01 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 12 00 00 32 00 00 09 0e 00 00 20 00 00 01 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 6f 00 12 32 01 00 00 00 09 0e 00 00 20 00 11 00 01 40 00 00 01 60 3f 00 61 37 61 31 61 29 7f 61 20 61 19 61 13 61 7f 10 61 0d 61 0f 61 0f 7f 61 0f 61 13 61 19 61 7f 1e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 6f 00 12 b2 01 00 00 09 0e 00 00 20 00 00 01 c0 00 00 01 e0 00 e1 b7 e1 b1 e1 a9 e1 a0 e1 99 e1 93 e1 90 e1 8d e1 8f e1 8f e1 8f e1 93 e1 99 e1 9e e1 a6 e1 b3 e1 bd e1 cd e1 db e1 e6 e1 fa... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 13 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 01 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 13 00 00 32 00 00 09 0e 00 00 20 00 00 01 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 70 00 13 32 01 00 00 00 09 0e 00 00 20 00 10 00 01 60 00 00 02 00 15 00 15 29 15 39 15 4c 28 15 60 15 70 16 00 16 00 0e 16 1f 16 2b 16 3a 00 16 48 16 56 16 61 16 05 6e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 70 00 13 b2 01 00 00 09 0e 00 00 20 00 00 01 e0 00 00 02 00 00 15 a9 15 b9 15 cc 15 e0 15 f0 16 00 16 0e 16 1f 16 2b 16 3a 16 48 16 56 16 61 16 6e 16 79 16 83 16 90 16 99 16 a5 16 a9 16 ae... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 14 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 02 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 14 00 00 32 00 00 09 0e 00 00 20 00 00 02 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 71 00 14 32 01 00 00 00 09 0e 00 00 20 00 00 00 02 00 00 00 02 20 3f 00 72 17 72 49 72 7e 57 73 31 73 63 73 15 73 7a 46 73 77 74 2a 74 58 7f 74 08 74 37 74 69 75 2b 12... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 71 00 14 b2 01 00 00 09 0e 00 00 20 00 00 02 00 00 00 02 20 00 f2 97 f2 c9 f2 fe f3 31 f3 63 f3 95 f3 c6 f3 f7 f4 2a f4 58 f4 88 f4 b7 f4 e9 f5 12 f5 3f f5 6e f5 99 f5 c7 f5 f1 f6 1c f6 45... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 15 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 02 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 15 00 00 32 00 00 09 0e 00 00 20 00 00 02 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 72 00 15 32 01 00 00 00 09 0e 00 00 20 00 00 00 02 20 00 00 02 40 15 00 10 5d 10 3f 10 1b 00 10 7b 10 59 10 33 10 15 0c 0f 6b 0f 45 0f 21 00 0f 7d 0f 55 0f 32 0f 15 0a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 72 00 15 b2 01 00 00 09 0e 00 00 20 00 00 02 20 00 00 02 40 00 10 dd 10 bf 10 9b 10 7b 10 59 10 33 10 0c 0f eb 0f c5 0f a1 0f 7d 0f 55 0f 32 0f 0a 0e e5 0e be 0e 9c 0e 72 0e 48 0e 20 0d f8... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 16 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 02 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 16 00 00 32 00 00 09 0e 00 00 20 00 00 02 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 73 00 16 32 01 00 00 00 09 0e 00 00 20 00 00 00 02 40 00 00 02 60 2a 00 78 39 78 40 78 48 55 78 4f 78 56 78 5f 78 2b 69 78 71 78 7a 78 05 7f 78 10 78 1a 78 27 78 7f 30... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 73 00 16 b2 01 00 00 09 0e 00 00 20 00 00 02 40 00 00 02 60 00 f8 39 f8 40 f8 48 f8 4f f8 56 f8 5f f8 69 f8 71 f8 7a f8 85 f8 90 f8 9a f8 a7 f8 b0 f8 c1 f8 cb f8 d0 f8 e1 f8 f1 f8 ff f9 0e... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 17 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 02 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 17 00 00 32 00 00 09 0e 00 00 20 00 00 02 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 74 00 17 32 01 00 00 00 09 0e 00 00 20 00 01 00 02 60 00 00 02 00 0f 00 00 15 7f 68 7f 3e 75 7f 12 7f 67 7f 3a 7f 3f 0d 7e 64 7e 38 7e 10 55 7e 61 7e 32 7e 08 7d 7e 5d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 74 00 17 b2 01 00 00 09 0e 00 00 20 00 00 02 60 00 00 02 80 00 00 15 ff e8 ff be ff 92 ff 67 ff 3a ff 0d fe e4 fe b8 fe 90 fe 61 fe 32 fe 08 fd dd fd b3 fd 88 fd 5c fd 33 fd 09 fc dc fc af... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 18 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 02 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 18 00 00 32 00 00 09 0e 00 00 20 00 00 02 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 75 00 18 32 01 00 00 00 09 0e 00 00 20 00 11 00 02 00 00 00 02 20 01 00 02 57 02 7d 02 24 28 02 4a 02 6f 03 14 03 01 37 03 5d 03 7e 03 21 28 03 46 03 6c 04 10 04 01 34... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 75 00 18 b2 01 00 00 09 0e 00 00 20 00 00 02 80 00 00 02 a0 00 02 57 02 7d 02 a4 02 ca 02 ef 03 14 03 37 03 5d 03 7e 03 a1 03 c6 03 ec 04 10 04 34 04 55 04 7a 04 a0 04 c2 04 e5 05 0a 05 29... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 19 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 02 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 19 00 00 32 00 00 09 0e 00 00 20 00 00 02 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 76 00 19 32 01 00 00 00 09 0e 00 00 20 00 11 00 02 20 00 00 02 40 2a 00 75 11 75 0c 75 0a 55 75 06 75 04 75 02 74 6f 7f 75 00 74 7f 74 7d 7f 74 7e 74 7d 74 7f 75 2a 01... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 76 00 19 b2 01 00 00 09 0e 00 00 20 00 00 02 a0 00 00 02 c0 00 f5 11 f5 0c f5 0a f5 06 f5 04 f5 02 f4 ff f5 00 f4 ff f4 fd f4 fe f4 fd f4 ff f5 01 f5 00 f5 03 f5 02 f5 03 f5 08 f5 0c f5 11... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 02 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1a 00 00 32 00 00 09 0e 00 00 20 00 00 02 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 77 00 1a 32 01 00 00 00 09 0e 00 00 20 00 11 00 02 40 00 00 02 60 15 00 0c 49 0c 55 0c 57 2a 0c 66 0c 6e 0c 77 0c 40 7e 0d 08 0d 0d 0d 0e 00 0d 15 0d 1e 0d 22 0d 00 29... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 77 00 1a b2 01 00 00 09 0e 00 00 20 00 00 02 c0 00 00 02 e0 00 0c c9 0c d5 0c d7 0c e6 0c ee 0c f7 0c fe 0d 08 0d 0d 0d 0e 0d 15 0d 1e 0d 22 0d 29 0d 2c 0d 31 0d 37 0d 39 0d 3e 0d 3d 0d 3f... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 02 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1b 00 00 32 00 00 09 0e 00 00 20 00 00 02 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 78 00 1b 32 01 00 00 00 09 0e 00 00 20 00 10 00 02 60 00 00 03 00 2a 00 79 06 79 04 79 04 55 79 03 79 04 79 05 79 2b 02 79 03 79 00 78 7f 7f 78 7d 78 7b 78 77 78 7f 79... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 78 00 1b b2 01 00 00 09 0e 00 00 20 00 00 02 e0 00 00 03 00 00 f9 06 f9 04 f9 04 f9 03 f9 04 f9 05 f9 02 f9 03 f9 00 f8 ff f8 fd f8 fb f8 f7 f8 f9 f8 f2 f8 f2 f8 f5 f8 eb f8 e5 f8 e7 f8 e2... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 03 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1c 00 00 32 00 00 09 0e 00 00 20 00 00 03 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 79 00 1c 32 01 00 00 00 09 0e 00 00 20 00 00 00 03 00 00 00 03 20 15 00 07 2a 07 19 07 07 00 07 73 07 61 07 4f 07 01 39 07 28 07 12 06 7f 2a 06 6e 06 54 06 3c 06 50 2c... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 79 00 1c b2 01 00 00 09 0e 00 00 20 00 00 03 00 00 00 03 20 00 07 aa 07 99 07 87 07 73 07 61 07 4f 07 39 07 28 07 12 06 ff 06 ee 06 d4 06 bc 06 ac 06 96 06 7e 06 67 06 51 06 3c 06 28 06 10... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 03 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1d 00 00 32 00 00 09 0e 00 00 20 00 00 03 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7a 00 1d 32 01 00 00 00 09 0e 00 00 20 00 00 00 03 20 00 00 03 40 2a 00 7b 2a 7b 38 7b 48 55 7b 59 7b 6b 7b 79 7b 7f 07 7b 1a 7b 2a 7b 3c 7f 7b 4d 7b 60 7b 73 7c 2a 06... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7a 00 1d b2 01 00 00 09 0e 00 00 20 00 00 03 20 00 00 03 40 00 fb 2a fb 38 fb 48 fb 59 fb 6b fb 79 fb 87 fb 9a fb aa fb bc fb cd fb e0 fb f3 fc 06 fc 17 fc 2d fc 3d fc 51 fc 62 fc 79 fc 8a... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 03 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1e 00 00 32 00 00 09 0e 00 00 20 00 00 03 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7b 00 1e 32 01 00 00 00 09 0e 00 00 20 00 00 00 03 40 00 00 03 60 2a 00 7c 3f 7c 2e 7c 17 5f 7c 04 7b 72 7b 5f 7b 7f 48 7b 35 7b 22 7b 11 75 7b 02 7b 6f 7b 5e 7b 2a 4c... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7b 00 1e b2 01 00 00 09 0e 00 00 20 00 00 03 40 00 00 03 60 00 fc 3f fc 2e fc 17 fc 04 fb f2 fb df fb c8 fb b5 fb a2 fb 91 fb 82 fb 6f fb 5e fb 4c fb 3a fb 2b fb 1a fb 09 fa fa fa ea fa dd... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 1f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 03 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 1f 00 00 32 00 00 09 0e 00 00 20 00 00 03 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7c 00 1f 32 01 00 00 00 09 0e 00 00 20 00 01 00 03 60 00 00 03 00 00 00 05 28 05 3b 05 4e 02 05 63 05 74 05 06 05 55 1f 05 2f 05 3b 05 4f 28 05 63 05 78 06 07 06 00 1c... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7c 00 1f b2 01 00 00 09 0e 00 00 20 00 00 03 60 00 00 03 80 00 05 28 05 3b 05 4e 05 63 05 74 05 86 05 9f 05 af 05 bb 05 cf 05 e3 05 f8 06 07 06 1c 06 2d 06 3f 06 51 06 63 06 73 06 84 06 94... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 20 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 03 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 20 00 00 32 00 00 09 0e 00 00 20 00 00 03 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7d 00 20 32 01 00 00 00 09 0e 00 00 20 00 11 00 03 00 00 00 03 20 3f 00 7a 32 7a 31 7a 38 7f 7a 3f 7a 44 7a 49 7a 7f 4b 7a 50 7a 54 7a 57 7f 7a 5b 7a 60 7a 61 7a 7f 64... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7d 00 20 b2 01 00 00 09 0e 00 00 20 00 00 03 80 00 00 03 a0 00 fa b2 fa b1 fa b8 fa bf fa c4 fa c9 fa cb fa d0 fa d4 fa d7 fa db fa e0 fa e1 fa e4 fa e9 fa e9 fa ee fa f0 fa f1 fa f4 fa f7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 21 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 03 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 21 00 00 32 00 00 09 0e 00 00 20 00 00 03 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7e 00 21 32 01 00 00 00 09 0e 00 00 20 00 11 00 03 20 00 00 03 40 15 00 07 39 07 32 07 31 2a 07 2c 07 26 07 21 07 55 1c 07 17 07 11 07 0c 28 07 05 07 00 07 78 07 00 74... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7e 00 21 b2 01 00 00 09 0e 00 00 20 00 00 03 a0 00 00 03 c0 00 07 b9 07 b2 07 b1 07 ac 07 a6 07 a1 07 9c 07 97 07 91 07 8c 07 85 07 80 07 78 07 74 07 6d 07 68 07 5e 07 56 07 50 07 4b 07 46... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 22 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 03 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 22 00 00 32 00 00 09 0e 00 00 20 00 00 03 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 04 01 7f 00 22 32 01 00 00 00 09 0e 00 00 20 00 11 00 03 40 00 00 03 60 2f 00 7b 00 7a 7e 7a 7d 7f 7a 7e 7a 7c 7a 7c 7a 7f 7e 7a 7e 7a 7b 7a 7a 75 7a 7f 7b 00 7b 00 7b 2a 03... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 7f 00 22 b2 01 00 00 09 0e 00 00 20 00 00 03 c0 00 00 03 e0 00 fb 00 fa fe fa fd fa fe fa fc fa fc fa fe fa fe fa fb fa fa fa ff fb 00 fb 00 fb 03 fb 02 fb 05 fb 08 fb 09 fb 09 fb 0b fb 0e... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 23 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 03 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 23 00 00 32 00 00 09 0e 00 00 20 00 00 03 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 00 00 23 32 01 00 00 00 09 0e 00 00 20 00 10 00 03 60 00 00 04 00 15 00 01 36 01 23 01 14 20 01 06 01 73 01 66 01 00 51 01 41 01 2a 01 1d 0a 01 0e 00 7d 00 6c 00 55 5b... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 80 00 23 b2 01 00 00 09 0e 00 00 20 00 00 03 e0 00 00 04 00 00 01 b6 01 a3 01 94 01 86 01 73 01 66 01 51 01 41 01 2a 01 1d 01 0e 00 fd 00 ec 00 db 00 cb 00 bb 00 ac 00 97 00 88 00 75 00 66... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 24 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 04 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 24 00 00 32 00 00 09 0e 00 00 20 00 00 04 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 01 00 24 32 01 00 00 00 09 0e 00 00 20 00 00 00 04 00 00 00 04 20 3f 00 7f 16 7f 27 7f 37 7f 7f 47 7f 58 7f 66 7f 40 7a 00 08 00 18 00 28 00 00 36 00 45 00 55 00 05 66... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 81 00 24 b2 01 00 00 09 0e 00 00 20 00 00 04 00 00 00 04 20 00 ff 96 ff a7 ff b7 ff c7 ff d8 ff e6 ff fa 00 08 00 18 00 28 00 36 00 45 00 55 00 66 00 78 00 85 00 92 00 a3 00 b4 00 c6 00 d7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 25 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 04 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 25 00 00 32 00 00 09 0e 00 00 20 00 00 04 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 02 00 25 32 01 00 00 00 09 0e 00 00 20 00 00 00 04 20 00 00 04 40 2a 00 7c 63 7c 63 7c 61 55 7c 59 7c 56 7c 56 7c 2a 56 7c 54 7c 54 7c 50 55 7c 50 7c 4e 7c 4e 7c 2a 4d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 82 00 25 b2 01 00 00 09 0e 00 00 20 00 00 04 20 00 00 04 40 00 fc 63 fc 63 fc 61 fc 59 fc 56 fc 56 fc 56 fc 54 fc 54 fc 50 fc 50 fc 4e fc 4e fc 4d fc 4c fc 4d fc 4a fc 4a fc 4c fc 48 fc 4c... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 26 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 04 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 26 00 00 32 00 00 09 0e 00 00 20 00 00 04 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 03 00 26 32 01 00 00 00 09 0e 00 00 20 00 00 00 04 40 00 00 04 60 00 00 05 09 05 11 05 14 00 05 15 05 1c 05 22 05 00 29 05 32 05 34 05 3a 00 05 3c 05 40 05 45 05 00 4a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 83 00 26 b2 01 00 00 09 0e 00 00 20 00 00 04 40 00 00 04 60 00 05 09 05 11 05 14 05 15 05 1c 05 22 05 29 05 32 05 34 05 3a 05 3c 05 40 05 45 05 4a 05 4d 05 53 05 53 05 57 05 59 05 5c 05 60... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 27 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 04 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 27 00 00 32 00 00 09 0e 00 00 20 00 00 04 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 04 00 27 32 01 00 00 00 09 0e 00 00 20 00 01 00 04 60 00 00 04 00 2b 00 7d 05 7d 00 7c 7f 7f 7c 7a 7c 7a 7c 78 7c 7f 77 7c 74 7c 6e 7c 66 7f 7c 69 7c 67 7c 63 7c 7f 5f... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 84 00 27 b2 01 00 00 09 0e 00 00 20 00 00 04 60 00 00 04 80 00 fd 05 fd 00 fc ff fc fa fc fa fc f8 fc f7 fc f4 fc ee fc e6 fc e9 fc e7 fc e3 fc df fc dc fc d9 fc d3 fc d3 fc d1 fc ca fc c7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 28 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 04 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 28 00 00 32 00 00 09 0e 00 00 20 00 00 04 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 05 00 28 32 01 00 00 00 09 0e 00 00 20 00 11 00 04 00 00 00 04 20 15 00 03 17 03 10 03 0a 20 03 01 03 7a 03 75 03 00 6f 03 67 03 5f 03 55 00 03 4d 03 48 03 40 03 00 39... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 85 00 28 b2 01 00 00 09 0e 00 00 20 00 00 04 80 00 00 04 a0 00 03 97 03 90 03 8a 03 81 03 7a 03 75 03 6f 03 67 03 5f 03 55 03 4d 03 48 03 40 03 39 03 32 03 29 03 21 03 1a 03 10 03 06 02 ff... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 29 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 04 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 29 00 00 32 00 00 09 0e 00 00 20 00 00 04 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 06 00 29 32 01 00 00 00 09 0e 00 00 20 00 11 00 04 20 00 00 04 40 2a 00 7d 54 7d 58 7d 61 55 7d 67 7d 70 7d 72 7d 3f 7b 7d 02 7d 0c 7d 0b 7f 7d 11 7d 1c 7d 27 7d 7f 2e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 86 00 29 b2 01 00 00 09 0e 00 00 20 00 00 04 a0 00 00 04 c0 00 fd 54 fd 58 fd 61 fd 67 fd 70 fd 72 fd 7b fd 82 fd 8c fd 8b fd 91 fd 9c fd a7 fd ae fd b6 fd bc fd c5 fd cb fd d4 fd dc fd e4... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 04 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2a 00 00 32 00 00 09 0e 00 00 20 00 00 04 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 07 00 2a 32 01 00 00 00 09 0e 00 00 20 00 11 00 04 40 00 00 04 60 3f 00 7e 7b 7e 71 7e 6a 7f 7e 61 7e 58 7e 4e 7e 7f 4a 7e 3f 7e 39 7e 32 7f 7e 2e 7e 25 7e 18 7e 7f 14... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 87 00 2a b2 01 00 00 09 0e 00 00 20 00 00 04 c0 00 00 04 e0 00 fe fb fe f1 fe ea fe e1 fe d8 fe ce fe ca fe bf fe b9 fe b2 fe ae fe a5 fe 98 fe 94 fe 8f fe 88 fe 83 fe 7c fe 75 fe 71 fe 6a... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 04 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2b 00 00 32 00 00 09 0e 00 00 20 00 00 04 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 08 00 2b 32 01 00 00 00 09 0e 00 00 20 00 10 00 04 60 00 00 05 00 15 00 01 37 01 41 01 4a 2a 01 51 01 59 01 62 01 54 6c 01 76 01 7e 02 07 00 02 0b 02 13 02 1e 02 00 26... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 88 00 2b b2 01 00 00 09 0e 00 00 20 00 00 04 e0 00 00 05 00 00 01 b7 01 c1 01 ca 01 d1 01 d9 01 e2 01 ec 01 f6 01 fe 02 07 02 0b 02 13 02 1e 02 26 02 2d 02 39 02 40 02 45 02 4f 02 58 02 60... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 05 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2c 00 00 32 00 00 09 0e 00 00 20 00 00 05 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 09 00 2c 32 01 00 00 00 09 0e 00 00 20 00 00 00 05 00 00 00 05 20 2a 00 7e 25 7e 25 7e 28 55 7e 27 7e 29 7e 29 7e 2a 29 7e 29 7e 2c 7e 2f 55 7e 2a 7e 28 7e 2a 7e 2a 2d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 89 00 2c b2 01 00 00 09 0e 00 00 20 00 00 05 00 00 00 05 20 00 fe 25 fe 25 fe 28 fe 27 fe 29 fe 29 fe 29 fe 29 fe 2c fe 2f fe 2a fe 28 fe 2a fe 2d fe 2b fe 2e fe 2c fe 2e fe 2d fe 2d fe 2c... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 05 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2d 00 00 32 00 00 09 0e 00 00 20 00 00 05 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0a 00 2d 32 01 00 00 00 09 0e 00 00 20 00 00 00 05 20 00 00 05 40 00 00 03 25 03 28 03 25 00 03 22 03 25 03 22 03 00 1e 03 20 03 1b 03 1a 00 03 1a 03 17 03 15 03 00 15... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8a 00 2d b2 01 00 00 09 0e 00 00 20 00 00 05 20 00 00 05 40 00 03 25 03 28 03 25 03 22 03 25 03 22 03 1e 03 20 03 1b 03 1a 03 1a 03 17 03 15 03 15 03 15 03 12 03 0b 03 0a 03 0a 03 08 03 08... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 05 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2e 00 00 32 00 00 09 0e 00 00 20 00 00 05 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0b 00 2e 32 01 00 00 00 09 0e 00 00 20 00 00 00 05 40 00 00 05 60 3f 00 7d 3d 7d 3b 7d 3a 7f 7d 3b 7d 38 7d 39 7d 7f 39 7d 35 7d 32 7d 34 7f 7d 35 7d 35 7d 35 7d 7f 34... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8b 00 2e b2 01 00 00 09 0e 00 00 20 00 00 05 40 00 00 05 60 00 fd bd fd bb fd ba fd bb fd b8 fd b9 fd b9 fd b5 fd b2 fd b4 fd b5 fd b5 fd b5 fd b4 fd b5 fd b3 fd b3 fd b2 fd b2 fd b5 fd b4... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 2f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 05 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 2f 00 00 32 00 00 09 0e 00 00 20 00 00 05 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0c 00 2f 32 01 00 00 00 09 0e 00 00 20 00 01 00 05 60 00 00 05 00 15 00 00 71 00 6b 00 64 2a 00 5d 00 55 00 51 00 55 4a 00 44 00 3d 00 38 2a 00 31 00 29 00 23 00 55 1b... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8c 00 2f b2 01 00 00 09 0e 00 00 20 00 00 05 60 00 00 05 80 00 00 f1 00 eb 00 e4 00 dd 00 d5 00 d1 00 ca 00 c4 00 bd 00 b8 00 b1 00 a9 00 a3 00 9b 00 95 00 92 00 87 00 82 00 7b 00 74 00 70... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 30 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 05 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 30 00 00 32 00 00 09 0e 00 00 20 00 00 05 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0d 00 30 32 01 00 00 00 09 0e 00 00 20 00 11 00 05 00 00 00 05 20 3f 00 7f 09 7f 0d 7f 15 7f 7f 1b 7f 22 7f 2a 7f 7f 2c 7f 36 7f 3b 7f 42 7f 7f 4a 7f 51 7f 51 7f 7f 5b... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8d 00 30 b2 01 00 00 09 0e 00 00 20 00 00 05 80 00 00 05 a0 00 ff 89 ff 8d ff 95 ff 9b ff a2 ff aa ff ac ff b6 ff bb ff c2 ff ca ff d1 ff d1 ff db ff e4 ff e9 ff f1 ff f8 ff ff 00 04 00 0a... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 31 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 05 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 31 00 00 32 00 00 09 0e 00 00 20 00 00 05 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0e 00 31 32 01 00 00 00 09 0e 00 00 20 00 11 00 05 20 00 00 05 40 3f 00 7e 52 7e 51 7e 50 7f 7e 4d 7e 4b 7e 4c 7e 7f 4e 7e 4c 7e 45 7e 46 7f 7e 48 7e 49 7e 49 7e 7f 46... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8e 00 31 b2 01 00 00 09 0e 00 00 20 00 00 05 a0 00 00 05 c0 00 fe d2 fe d1 fe d0 fe cd fe cb fe cc fe ce fe cc fe c5 fe c6 fe c8 fe c9 fe c9 fe c6 fe c7 fe c9 fe c8 fe c5 fe c5 fe c7 fe c7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 32 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 05 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 32 00 00 32 00 00 09 0e 00 00 20 00 00 05 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 0f 00 32 32 01 00 00 00 09 0e 00 00 20 00 11 00 05 40 00 00 05 60 15 00 01 63 01 62 01 6a 2a 01 6a 01 6d 01 70 01 55 71 01 75 01 79 01 7c 28 01 7c 01 7f 02 02 02 00 05... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 8f 00 32 b2 01 00 00 09 0e 00 00 20 00 00 05 c0 00 00 05 e0 00 01 e3 01 e2 01 ea 01 ea 01 ed 01 f0 01 f1 01 f5 01 f9 01 fc 01 fc 01 ff 02 02 02 05 02 03 02 07 02 09 02 08 02 0e 02 08 02 0b... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 33 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 05 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 33 00 00 32 00 00 09 0e 00 00 20 00 00 05 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 10 00 33 32 01 00 00 00 09 0e 00 00 20 00 10 00 05 60 00 00 06 00 3f 00 7e 5f 7e 5b 7e 5b 7f 7e 5a 7e 55 7e 55 7e 7f 53 7e 4f 7e 4e 7e 4e 7f 7e 49 7e 4c 7e 4a 7e 7f 46... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 90 00 33 b2 01 00 00 09 0e 00 00 20 00 00 05 e0 00 00 06 00 00 fe df fe db fe db fe da fe d5 fe d5 fe d3 fe cf fe ce fe ce fe c9 fe cc fe ca fe c6 fe be fe ba fe be fe bb fe bb fe ba fe b6... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 34 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 06 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 34 00 00 32 00 00 09 0e 00 00 20 00 00 06 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 11 00 34 32 01 00 00 00 09 0e 00 00 20 00 00 00 06 00 00 00 06 20 00 00 01 78 01 74 01 74 00 01 71 01 6e 01 6d 01 00 6a 01 65 01 64 01 62 00 01 5d 01 5d 01 5b 01 00 56... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 91 00 34 b2 01 00 00 09 0e 00 00 20 00 00 06 00 00 00 06 20 00 01 78 01 74 01 74 01 71 01 6e 01 6d 01 6a 01 65 01 64 01 62 01 5d 01 5d 01 5b 01 56 01 55 01 53 01 4d 01 4a 01 4b 01 46 01 42... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 35 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 06 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 35 00 00 32 00 00 09 0e 00 00 20 00 00 06 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 12 00 35 32 01 00 00 00 09 0e 00 00 20 00 00 00 06 20 00 00 06 40 3f 00 7e 4b 7e 47 7e 4e 7f 7e 4e 7e 53 7e 55 7e 7f 57 7e 58 7e 5c 7e 5e 7f 7e 5f 7e 65 7e 68 7e 7f 68... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 92 00 35 b2 01 00 00 09 0e 00 00 20 00 00 06 20 00 00 06 40 00 fe cb fe c7 fe ce fe ce fe d3 fe d5 fe d7 fe d8 fe dc fe de fe df fe e5 fe e8 fe e8 fe ed fe f0 fe f2 fe f6 fe f8 fe fa fe fe... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 36 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 06 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 36 00 00 32 00 00 09 0e 00 00 20 00 00 06 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 13 00 36 32 01 00 00 00 09 0e 00 00 20 00 00 00 06 40 00 00 06 60 3f 00 7f 3a 7f 36 7f 35 7f 7f 30 7f 2f 7f 28 7f 7f 25 7f 21 7f 22 7f 21 7f 7f 1d 7f 17 7f 1a 7f 7f 16... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 93 00 36 b2 01 00 00 09 0e 00 00 20 00 00 06 40 00 00 06 60 00 ff ba ff b6 ff b5 ff b0 ff af ff a8 ff a5 ff a1 ff a2 ff a1 ff 9d ff 97 ff 9a ff 96 ff 94 ff 92 ff 93 ff 8c ff 89 ff 87 ff 84... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 37 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 06 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 37 00 00 32 00 00 09 0e 00 00 20 00 00 06 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 14 00 37 32 01 00 00 00 09 0e 00 00 20 00 01 00 06 60 00 00 06 00 15 00 00 0f 00 0e 00 13 2a 00 19 00 18 00 1e 00 55 24 00 23 00 26 00 2e 2a 00 31 00 33 00 35 00 55 35... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 94 00 37 b2 01 00 00 09 0e 00 00 20 00 00 06 60 00 00 06 80 00 00 8f 00 8e 00 93 00 99 00 98 00 9e 00 a4 00 a3 00 a6 00 ae 00 b1 00 b3 00 b5 00 b5 00 be 00 c1 00 c3 00 c4 00 cc 00 ce 00 d1... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 38 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 06 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 38 00 00 32 00 00 09 0e 00 00 20 00 00 06 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 15 00 38 32 01 00 00 00 09 0e 00 00 20 00 11 00 06 00 00 00 06 20 2a 00 7f 68 7f 67 7f 63 55 7f 6a 7f 65 7f 6b 7f 2a 69 7f 65 7f 66 7f 66 55 7f 6a 7f 64 7f 61 7f 2a 64... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 95 00 38 b2 01 00 00 09 0e 00 00 20 00 00 06 80 00 00 06 a0 00 ff 68 ff 67 ff 63 ff 6a ff 65 ff 6b ff 69 ff 65 ff 66 ff 66 ff 6a ff 64 ff 61 ff 64 ff 65 ff 65 ff 67 ff 66 ff 64 ff 65 ff 64... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 39 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 06 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 39 00 00 32 00 00 09 0e 00 00 20 00 00 06 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 16 00 39 32 01 00 00 00 09 0e 00 00 20 00 11 00 06 20 00 00 06 40 00 00 01 31 01 32 01 31 00 01 31 01 30 01 2f 01 00 30 01 31 01 2f 01 31 00 01 30 01 28 01 2a 01 00 2c... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 96 00 39 b2 01 00 00 09 0e 00 00 20 00 00 06 a0 00 00 06 c0 00 01 31 01 32 01 31 01 31 01 30 01 2f 01 30 01 31 01 2f 01 31 01 30 01 28 01 2a 01 2c 01 2c 01 2d 01 2c 01 2a 01 2c 01 2a 01 29... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 06 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3a 00 00 32 00 00 09 0e 00 00 20 00 00 06 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 17 00 3a 32 01 00 00 00 09 0e 00 00 20 00 11 00 06 40 00 00 06 60 2a 00 7f 1a 7f 16 7f 19 55 7f 17 7f 18 7f 12 7f 2a 13 7f 14 7f 15 7f 14 55 7f 14 7f 13 7f 12 7f 2a 12... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 97 00 3a b2 01 00 00 09 0e 00 00 20 00 00 06 c0 00 00 06 e0 00 ff 1a ff 16 ff 19 ff 17 ff 18 ff 12 ff 13 ff 14 ff 15 ff 14 ff 14 ff 13 ff 12 ff 12 ff 12 ff 13 ff 12 ff 11 ff 10 ff 10 ff 12... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 06 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3b 00 00 32 00 00 09 0e 00 00 20 00 00 06 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 18 00 3b 32 01 00 00 00 09 0e 00 00 20 00 10 00 06 60 00 00 07 00 00 00 00 66 00 65 00 60 00 00 5e 00 61 00 56 00 00 58 00 55 00 56 00 52 00 00 51 00 51 00 4d 00 00 47... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 98 00 3b b2 01 00 00 09 0e 00 00 20 00 00 06 e0 00 00 07 00 00 00 66 00 65 00 60 00 5e 00 61 00 56 00 58 00 55 00 56 00 52 00 51 00 51 00 4d 00 47 00 46 00 44 00 42 00 3f 00 3c 00 39 00 38... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 07 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3c 00 00 32 00 00 09 0e 00 00 20 00 00 07 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 19 00 3c 32 01 00 00 00 09 0e 00 00 20 00 00 00 07 00 00 00 07 20 3f 00 7f 3f 7f 43 7f 44 7f 7f 49 7f 4b 7f 4a 7f 7f 50 7f 53 7f 54 7f 58 7f 7f 5b 7f 5b 7f 5e 7f 7f 63... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 99 00 3c b2 01 00 00 09 0e 00 00 20 00 00 07 00 00 00 07 20 00 ff bf ff c3 ff c4 ff c9 ff cb ff ca ff d0 ff d3 ff d4 ff d8 ff db ff db ff de ff e3 ff e0 ff e3 ff e7 ff ea ff ee ff f0 ff f3... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 07 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3d 00 00 32 00 00 09 0e 00 00 20 00 00 07 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1a 00 3d 32 01 00 00 00 09 0e 00 00 20 00 00 00 07 20 00 00 07 40 3f 00 7f 20 7f 1e 7f 20 7f 7f 22 7f 23 7f 22 7f 7f 20 7f 20 7f 22 7f 23 7f 7f 22 7f 1e 7f 20 7f 7f 1f... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9a 00 3d b2 01 00 00 09 0e 00 00 20 00 00 07 20 00 00 07 40 00 ff a0 ff 9e ff a0 ff a2 ff a3 ff a2 ff a0 ff a0 ff a2 ff a3 ff a2 ff 9e ff a0 ff 9f ff 9f ff 9f ff a0 ff a5 ff 9e ff 9f ff 9f... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 07 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3e 00 00 32 00 00 09 0e 00 00 20 00 00 07 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1b 00 3e 32 01 00 00 00 09 0e 00 00 20 00 00 00 07 40 00 00 07 60 15 00 00 2a 00 27 00 2c 2a 00 2d 00 31 00 30 00 55 31 00 33 00 34 00 36 2a 00 36 00 37 00 36 00 55 35... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9b 00 3e b2 01 00 00 09 0e 00 00 20 00 00 07 40 00 00 07 60 00 00 aa 00 a7 00 ac 00 ad 00 b1 00 b0 00 b1 00 b3 00 b4 00 b6 00 b6 00 b7 00 b6 00 b5 00 b8 00 b8 00 ba 00 bd 00 bf 00 b7 00 ba... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 3f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 07 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 3f 00 00 32 00 00 09 0e 00 00 20 00 00 07 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1c 00 3f 32 01 00 00 00 09 0e 00 00 20 00 01 00 07 60 00 00 07 00 3f 00 7f 19 7f 19 7f 19 7f 7f 15 7f 16 7f 15 7f 7f 16 7f 13 7f 15 7f 0f 7f 7f 0c 7f 0f 7f 0d 7f 7f 0d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9c 00 3f b2 01 00 00 09 0e 00 00 20 00 00 07 60 00 00 07 80 00 ff 99 ff 99 ff 99 ff 95 ff 96 ff 95 ff 96 ff 93 ff 95 ff 8f ff 8c ff 8f ff 8d ff 8d ff 8c ff 8b ff 8b ff 8c ff 89 ff 87 ff 86... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 40 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 07 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 40 00 00 32 00 00 09 0e 00 00 20 00 00 07 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1d 00 40 32 01 00 00 00 09 0e 00 00 20 00 11 00 07 00 00 00 07 20 15 00 00 0c 00 08 00 07 2a 00 06 00 08 00 06 00 55 04 00 04 00 08 00 00 00 00 7c 00 7f 00 7e 00 00 7e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9d 00 40 b2 01 00 00 09 0e 00 00 20 00 00 07 80 00 00 07 a0 00 00 8c 00 88 00 87 00 86 00 88 00 86 00 84 00 84 00 88 00 80 00 7c 00 7f 00 7e 00 7e 00 7b 00 7f 00 7c 00 7b 00 78 00 79 00 77... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 41 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 07 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 41 00 00 32 00 00 09 0e 00 00 20 00 00 07 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1e 00 41 32 01 00 00 00 09 0e 00 00 20 00 11 00 07 20 00 00 07 40 3f 00 7f 03 7f 06 7f 05 7f 7f 08 7f 0a 7f 09 7f 7f 0d 7f 09 7f 0e 7f 0d 7f 7f 0f 7f 10 7f 0f 7f 7f 0f... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9e 00 41 b2 01 00 00 09 0e 00 00 20 00 00 07 a0 00 00 07 c0 00 ff 83 ff 86 ff 85 ff 88 ff 8a ff 89 ff 8d ff 89 ff 8e ff 8d ff 8f ff 90 ff 8f ff 8f ff 93 ff 93 ff 96 ff 96 ff 92 ff 96 ff 98... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 42 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 07 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 42 00 00 32 00 00 09 0e 00 00 20 00 00 07 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 1f 00 42 32 01 00 00 00 09 0e 00 00 20 00 11 00 07 40 00 00 07 60 3f 00 7f 6d 7f 6d 7f 6f 7f 7f 69 7f 64 7f 69 7f 7f 68 7f 66 7f 65 7f 63 7f 7f 65 7f 64 7f 61 7f 7f 61... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 9f 00 42 b2 01 00 00 09 0e 00 00 20 00 00 07 c0 00 00 07 e0 00 ff ed ff ed ff ef ff e9 ff e4 ff e9 ff e8 ff e6 ff e5 ff e3 ff e5 ff e4 ff e1 ff e1 ff e2 ff e1 ff e1 ff df ff da ff dc ff da... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 43 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 07 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 43 00 00 32 00 00 09 0e 00 00 20 00 00 07 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 20 00 43 32 01 00 00 00 09 0e 00 00 20 00 10 00 07 60 00 00 08 00 00 00 00 2c 00 2f 00 2e 00 00 31 00 31 00 34 00 00 35 00 32 00 35 00 35 00 00 3a 00 3e 00 3e 00 00 3f... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a0 00 43 b2 01 00 00 09 0e 00 00 20 00 00 07 e0 00 00 08 00 00 00 2c 00 2f 00 2e 00 31 00 31 00 34 00 35 00 32 00 35 00 35 00 3a 00 3e 00 3e 00 3f 00 3e 00 41 00 43 00 41 00 44 00 45 00 46... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 44 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 08 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 44 00 00 32 00 00 09 0e 00 00 20 00 00 08 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 21 00 44 32 01 00 00 00 09 0e 00 00 20 00 00 00 08 00 00 00 08 20 3f 00 7f 53 7f 55 7f 54 7f 7f 4f 7f 53 7f 53 7f 7f 52 7f 52 7f 54 7f 55 7f 7f 51 7f 53 7f 54 7f 7f 52... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a1 00 44 b2 01 00 00 09 0e 00 00 20 00 00 08 00 00 00 08 20 00 ff d3 ff d5 ff d4 ff cf ff d3 ff d3 ff d2 ff d2 ff d4 ff d5 ff d1 ff d3 ff d4 ff d2 ff d1 ff d3 ff d3 ff d0 ff d1 ff d0 ff d3... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 45 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 08 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 45 00 00 32 00 00 09 0e 00 00 20 00 00 08 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 22 00 45 32 01 00 00 00 09 0e 00 00 20 00 00 00 08 20 00 00 08 40 00 00 00 6a 00 6e 00 68 00 00 68 00 6a 00 69 00 00 69 00 69 00 69 00 6b 00 00 6a 00 6a 00 69 00 00 69... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a2 00 45 b2 01 00 00 09 0e 00 00 20 00 00 08 20 00 00 08 40 00 00 6a 00 6e 00 68 00 68 00 6a 00 69 00 69 00 69 00 69 00 6b 00 6a 00 6a 00 69 00 69 00 69 00 67 00 68 00 69 00 65 00 69 00 68... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 46 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 08 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 46 00 00 32 00 00 09 0e 00 00 20 00 00 08 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 23 00 46 32 01 00 00 00 09 0e 00 00 20 00 00 00 08 40 00 00 08 60 3f 00 7f 2b 7f 2f 7f 2d 7f 7f 2b 7f 29 7f 2a 7f 7f 2c 7f 28 7f 2a 7f 2c 7f 7f 2a 7f 2c 7f 2c 7f 7f 2a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a3 00 46 b2 01 00 00 09 0e 00 00 20 00 00 08 40 00 00 08 60 00 ff ab ff af ff ad ff ab ff a9 ff aa ff ac ff a8 ff aa ff ac ff aa ff ac ff ac ff aa ff a9 ff aa ff ab ff ab ff ab ff ad ff aa... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 47 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 08 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 47 00 00 32 00 00 09 0e 00 00 20 00 00 08 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 24 00 47 32 01 00 00 00 09 0e 00 00 20 00 01 00 08 60 00 00 08 00 00 00 00 24 00 24 00 24 00 00 22 00 20 00 22 00 00 21 00 1b 00 1b 00 1a 00 00 1b 00 1a 00 1b 00 00 19... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a4 00 47 b2 01 00 00 09 0e 00 00 20 00 00 08 60 00 00 08 80 00 00 24 00 24 00 24 00 22 00 20 00 22 00 21 00 1b 00 1b 00 1a 00 1b 00 1a 00 1b 00 19 00 16 00 19 00 19 00 11 00 12 00 14 00 13... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 48 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 08 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 48 00 00 32 00 00 09 0e 00 00 20 00 00 08 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 25 00 48 32 01 00 00 00 09 0e 00 00 20 00 11 00 08 00 00 00 08 20 3f 00 7f 61 7f 66 7f 68 7f 7f 6a 7f 6b 7f 69 7f 7f 6c 7f 6c 7f 6f 7f 6e 7f 7f 73 7f 71 7f 72 7f 7f 73... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a5 00 48 b2 01 00 00 09 0e 00 00 20 00 00 08 80 00 00 08 a0 00 ff e1 ff e6 ff e8 ff ea ff eb ff e9 ff ec ff ec ff ef ff ee ff f3 ff f1 ff f2 ff f3 ff f2 ff f3 ff f3 ff f5 ff f8 ff fc ff f5... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 49 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 08 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 49 00 00 32 00 00 09 0e 00 00 20 00 00 08 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 26 00 49 32 01 00 00 00 09 0e 00 00 20 00 11 00 08 20 00 00 08 40 3f 00 7f 65 7f 65 7f 65 7f 7f 66 7f 67 7f 64 7f 7f 65 7f 66 7f 65 7f 66 7f 7f 68 7f 64 7f 66 7f 7f 62... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a6 00 49 b2 01 00 00 09 0e 00 00 20 00 00 08 a0 00 00 08 c0 00 ff e5 ff e5 ff e5 ff e6 ff e7 ff e4 ff e5 ff e6 ff e5 ff e6 ff e8 ff e4 ff e6 ff e2 ff e6 ff e5 ff e6 ff e6 ff e6 ff e5 ff e6... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 08 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4a 00 00 32 00 00 09 0e 00 00 20 00 00 08 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 27 00 4a 32 01 00 00 00 09 0e 00 00 20 00 11 00 08 40 00 00 08 60 00 00 00 31 00 35 00 39 00 00 37 00 39 00 3a 00 00 39 00 3d 00 3c 00 39 00 00 3c 00 3e 00 3d 00 00 3d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a7 00 4a b2 01 00 00 09 0e 00 00 20 00 00 08 c0 00 00 08 e0 00 00 31 00 35 00 39 00 37 00 39 00 3a 00 39 00 3d 00 3c 00 39 00 3c 00 3e 00 3d 00 3d 00 3b 00 39 00 3c 00 41 00 3b 00 3c 00 3c... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 08 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4b 00 00 32 00 00 09 0e 00 00 20 00 00 08 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 28 00 4b 32 01 00 00 00 09 0e 00 00 20 00 10 00 08 60 00 00 09 00 3f 00 7f 61 7f 5f 7f 62 7f 7f 5d 7f 5e 7f 5f 7f 7f 5d 7f 5e 7f 5e 7f 5c 7f 7f 5d 7f 59 7f 5a 7f 7f 5a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a8 00 4b b2 01 00 00 09 0e 00 00 20 00 00 08 e0 00 00 09 00 00 ff e1 ff df ff e2 ff dd ff de ff df ff dd ff de ff de ff dc ff dd ff d9 ff da ff da ff db ff dc ff d9 ff d9 ff da ff d9 ff da... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 09 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4c 00 00 32 00 00 09 0e 00 00 20 00 00 09 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 29 00 4c 32 01 00 00 00 09 0e 00 00 20 00 00 00 09 00 00 00 09 20 00 00 00 2c 00 29 00 2d 00 00 2b 00 29 00 29 00 00 29 00 27 00 27 00 29 00 00 28 00 28 00 26 00 00 24... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 a9 00 4c b2 01 00 00 09 0e 00 00 20 00 00 09 00 00 00 09 20 00 00 2c 00 29 00 2d 00 2b 00 29 00 29 00 29 00 27 00 27 00 29 00 28 00 28 00 26 00 24 00 28 00 26 00 22 00 21 00 21 00 23 00 23... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 09 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4d 00 00 32 00 00 09 0e 00 00 20 00 00 09 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2a 00 4d 32 01 00 00 00 09 0e 00 00 20 00 00 00 09 20 00 00 09 40 3f 00 7f 54 7f 56 7f 59 7f 7f 59 7f 54 7f 54 7f 7f 59 7f 59 7f 57 7f 59 7f 7f 5b 7f 5d 7f 5b 7f 7f 5a... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 aa 00 4d b2 01 00 00 09 0e 00 00 20 00 00 09 20 00 00 09 40 00 ff d4 ff d6 ff d9 ff d9 ff d4 ff d4 ff d9 ff d9 ff d7 ff d9 ff db ff dd ff db ff da ff d9 ff de ff de ff de ff dc ff de ff de... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 09 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4e 00 00 32 00 00 09 0e 00 00 20 00 00 09 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2b 00 4e 32 01 00 00 00 09 0e 00 00 20 00 00 00 09 40 00 00 09 60 3f 00 7f 7b 7f 76 7f 76 7f 7f 77 7f 78 7f 77 7f 7f 79 7f 79 7f 77 7f 76 7f 7f 77 7f 76 7f 75 7f 7f 74... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 ab 00 4e b2 01 00 00 09 0e 00 00 20 00 00 09 40 00 00 09 60 00 ff fb ff f6 ff f6 ff f7 ff f8 ff f7 ff f9 ff f9 ff f7 ff f6 ff f7 ff f6 ff f5 ff f4 ff f5 ff f6 ff f5 ff f2 ff f7 ff f5 ff f0... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 4f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 09 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 4f 00 00 32 00 00 09 0e 00 00 20 00 00 09 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2c 00 4f 32 01 00 00 00 09 0e 00 00 20 00 01 00 09 60 00 00 09 00 00 00 00 0f 00 10 00 0c 00 00 0b 00 0e 00 12 00 00 13 00 13 00 12 00 13 00 00 14 00 13 00 14 00 00 13... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 ac 00 4f b2 01 00 00 09 0e 00 00 20 00 00 09 60 00 00 09 80 00 00 0f 00 10 00 0c 00 0b 00 0e 00 12 00 13 00 13 00 12 00 13 00 14 00 13 00 14 00 13 00 16 00 15 00 16 00 15 00 15 00 19 00 18... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 50 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 09 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 50 00 00 32 00 00 09 0e 00 00 20 00 00 09 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2d 00 50 32 01 00 00 00 09 0e 00 00 20 00 11 00 09 00 00 00 09 20 3f 00 7f 76 7f 75 7f 76 7f 7f 73 7f 75 7f 71 7f 7f 73 7f 74 7f 75 7f 73 7f 7f 72 7f 72 7f 74 7f 7f 73... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 ad 00 50 b2 01 00 00 09 0e 00 00 20 00 00 09 80 00 00 09 a0 00 ff f6 ff f5 ff f6 ff f3 ff f5 ff f1 ff f3 ff f4 ff f5 ff f3 ff f2 ff f2 ff f4 ff f3 ff f2 ff ee ff f2 ff f3 ff f1 ff f2 ff f1... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 51 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 09 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 51 00 00 32 00 00 09 0e 00 00 20 00 00 09 a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2e 00 51 32 01 00 00 00 09 0e 00 00 20 00 11 00 09 20 00 00 09 40 00 00 00 1e 00 20 00 1f 00 00 1f 00 1f 00 18 00 00 1e 00 1d 00 1e 00 1f 00 00 1e 00 1f 00 20 00 00 1e... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 ae 00 51 b2 01 00 00 09 0e 00 00 20 00 00 09 a0 00 00 09 c0 00 00 1e 00 20 00 1f 00 1f 00 1f 00 18 00 1e 00 1d 00 1e 00 1f 00 1e 00 1f 00 20 00 1e 00 1f 00 1f 00 1e 00 1c 00 20 00 1d 00 1c... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 52 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 09 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 52 00 00 32 00 00 09 0e 00 00 20 00 00 09 c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 2f 00 52 32 01 00 00 00 09 0e 00 00 20 00 11 00 09 40 00 00 09 60 3f 00 7f 66 7f 64 7f 67 7f 7f 65 7f 68 7f 65 7f 7f 65 7f 66 7f 65 7f 66 7f 7f 69 7f 65 7f 63 7f 7f 61... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 af 00 52 b2 01 00 00 09 0e 00 00 20 00 00 09 c0 00 00 09 e0 00 ff e6 ff e4 ff e7 ff e5 ff e8 ff e5 ff e5 ff e6 ff e5 ff e6 ff e9 ff e5 ff e3 ff e1 ff e5 ff e4 ff e6 ff e5 ff e5 ff e6 ff e6... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 53 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 09 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 53 00 00 32 00 00 09 0e 00 00 20 00 00 09 e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 30 00 53 32 01 00 00 00 09 0e 00 00 20 00 10 00 09 60 00 00 0a 00 00 00 00 06 00 09 00 0a 00 00 09 00 0a 00 0a 00 00 0b 00 08 00 0a 00 0b 00 00 08 00 08 00 0a 00 00 08... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b0 00 53 b2 01 00 00 09 0e 00 00 20 00 00 09 e0 00 00 0a 00 00 00 06 00 09 00 0a 00 09 00 0a 00 0a 00 0b 00 08 00 0a 00 0b 00 08 00 08 00 0a 00 08 00 09 00 09 00 08 00 09 00 09 00 09 00 04... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 54 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0a 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 54 00 00 32 00 00 09 0e 00 00 20 00 00 0a 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 31 00 54 32 01 00 00 00 09 0e 00 00 20 00 00 00 0a 00 00 00 0a 20 3f 00 7f 77 7f 7a 7f 77 7f 7f 75 7f 79 7f 77 7f 7f 76 7f 79 7f 7b 7f 77 7f 7f 73 7f 76 7f 7a 7f 7f 7d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b1 00 54 b2 01 00 00 09 0e 00 00 20 00 00 0a 00 00 00 0a 20 00 ff f7 ff fa ff f7 ff f5 ff f9 ff f7 ff f6 ff f9 ff fb ff f7 ff f3 ff f6 ff fa ff fd ff fb ff fd ff f9 ff fc ff fe ff fc ff fc... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 55 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0a 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 55 00 00 32 00 00 09 0e 00 00 20 00 00 0a 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 32 00 55 32 01 00 00 00 09 0e 00 00 20 00 00 00 0a 20 00 00 0a 40 3f 00 7f 79 7f 7a 7f 78 7f 7f 7b 7f 79 7f 77 7f 7f 78 7f 79 7f 7a 7f 77 7f 7f 77 7f 77 7f 79 7f 7f 77... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b2 00 55 b2 01 00 00 09 0e 00 00 20 00 00 0a 20 00 00 0a 40 00 ff f9 ff fa ff f8 ff fb ff f9 ff f7 ff f8 ff f9 ff fa ff f7 ff f7 ff f7 ff f9 ff f7 ff fc ff f7 ff f3 ff f8 ff f5 ff fb ff f7... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 56 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0a 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 56 00 00 32 00 00 09 0e 00 00 20 00 00 0a 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 33 00 56 32 01 00 00 00 09 0e 00 00 20 00 00 00 0a 40 00 00 0a 60 00 00 00 0e 00 11 00 12 00 00 13 00 11 00 12 00 00 10 00 12 00 12 00 11 00 00 13 00 13 00 13 00 00 13... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b3 00 56 b2 01 00 00 09 0e 00 00 20 00 00 0a 40 00 00 0a 60 00 00 0e 00 11 00 12 00 13 00 11 00 12 00 10 00 12 00 12 00 11 00 13 00 13 00 13 00 13 00 11 00 12 00 14 00 14 00 18 00 0c 00 0f... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 57 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0a 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 57 00 00 32 00 00 09 0e 00 00 20 00 00 0a 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 34 00 57 32 01 00 00 00 09 0e 00 00 20 00 01 00 0a 60 00 00 0a 00 3f 00 7f 79 7f 78 7f 76 7f 7f 77 7f 76 7f 77 7f 7f 74 7f 78 7f 78 7f 72 7f 7f 73 7f 75 7f 75 7f 7f 74... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b4 00 57 b2 01 00 00 09 0e 00 00 20 00 00 0a 60 00 00 0a 80 00 ff f9 ff f8 ff f6 ff f7 ff f6 ff f7 ff f4 ff f8 ff f8 ff f2 ff f3 ff f5 ff f5 ff f4 ff f7 ff f7 ff f9 ff f6 ff f6 ff f6 ff f3... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 58 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0a 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 58 00 00 32 00 00 09 0e 00 00 20 00 00 0a 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 35 00 58 32 01 00 00 00 09 0e 00 00 20 00 11 00 0a 00 00 00 0a 20 00 00 00 0c 00 0c 00 0f 00 00 0e 00 0c 00 0b 00 00 0d 00 0d 00 0b 00 0a 00 00 0e 00 0f 00 09 00 00 07... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b5 00 58 b2 01 00 00 09 0e 00 00 20 00 00 0a 80 00 00 0a a0 00 00 0c 00 0c 00 0f 00 0e 00 0c 00 0b 00 0d 00 0d 00 0b 00 0a 00 0e 00 0f 00 09 00 07 00 08 00 0c 00 0c 00 0f 00 09 00 0d 00 0b... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 59 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0a 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 59 00 00 32 00 00 09 0e 00 00 20 00 00 0a a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 36 00 59 32 01 00 00 00 09 0e 00 00 20 00 11 00 0a 20 00 00 0a 40 3f 00 7f 76 7f 73 7f 74 7f 7f 78 7f 74 7f 75 7f 7f 75 7f 75 7f 74 7f 74 7f 7f 75 7f 6e 7f 72 7f 7f 74... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b6 00 59 b2 01 00 00 09 0e 00 00 20 00 00 0a a0 00 00 0a c0 00 ff f6 ff f3 ff f4 ff f8 ff f4 ff f5 ff f5 ff f5 ff f4 ff f4 ff f5 ff ee ff f2 ff f4 ff f5 ff f6 ff f5 ff f3 ff f6 ff f5 ff f6... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0a 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5a 00 00 32 00 00 09 0e 00 00 20 00 00 0a c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 37 00 5a 32 01 00 00 00 09 0e 00 00 20 00 11 00 0a 40 00 00 0a 60 0f 00 00 00 7f 7e 7f 7f 7f 7f 7e 7f 7e 7f 7d 7f 7f 7c 7f 7d 7f 7c 7f 7f 7f 7f 7f 7f 79 7f 7a 7f 7f 7c... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b7 00 5a b2 01 00 00 09 0e 00 00 20 00 00 0a c0 00 00 0a e0 00 00 00 ff fe ff ff ff fe ff fe ff fd ff fc ff fd ff fc ff ff ff ff ff f9 ff fa ff fc ff fc ff fd ff ff ff fe ff fc ff fe ff fc... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0a 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5b 00 00 32 00 00 09 0e 00 00 20 00 00 0a e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 38 00 5b 32 01 00 00 00 09 0e 00 00 20 00 10 00 0a 60 00 00 0b 00 00 00 00 03 00 01 00 04 00 00 02 00 02 00 01 00 00 03 00 03 00 05 00 02 00 00 04 00 06 00 03 00 30 00... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b8 00 5b b2 01 00 00 09 0e 00 00 20 00 00 0a e0 00 00 0b 00 00 00 03 00 01 00 04 00 02 00 02 00 01 00 03 00 03 00 05 00 02 00 04 00 06 00 03 00 00 ff ff 00 05 00 06 00 05 00 04 00 05 00 07... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5c 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0b 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5c 00 00 32 00 00 09 0e 00 00 20 00 00 0b 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 39 00 5c 32 01 00 00 00 09 0e 00 00 20 00 00 00 0b 00 00 00 0b 20 3f 00 7f 7a 7f 7c 7f 7e 7f 7f 7a 7f 78 7f 7b 7f 7f 7d 7f 7b 7f 7c 7f 7b 7f 7f 7d 7f 7b 7f 7d 7f 7f 7d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 b9 00 5c b2 01 00 00 09 0e 00 00 20 00 00 0b 00 00 00 0b 20 00 ff fa ff fc ff fe ff fa ff f8 ff fb ff fd ff fb ff fc ff fb ff fd ff fb ff fd ff fd ff fb ff fa ff fb ff fa ff fc ff fd ff fa... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5d 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0b 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5d 00 00 32 00 00 09 0e 00 00 20 00 00 0b 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3a 00 5d 32 01 00 00 00 09 0e 00 00 20 00 00 00 0b 20 00 00 0b 40 00 00 00 0b 00 0e 00 08 00 00 06 00 04 00 08 00 00 0a 00 09 00 08 00 0c 00 00 09 00 08 00 09 00 00 0b... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 ba 00 5d b2 01 00 00 09 0e 00 00 20 00 00 0b 20 00 00 0b 40 00 00 0b 00 0e 00 08 00 06 00 04 00 08 00 0a 00 09 00 08 00 0c 00 09 00 08 00 09 00 0b 00 07 00 08 00 07 00 0a 00 08 00 08 00 0d... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5e 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0b 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5e 00 00 32 00 00 09 0e 00 00 20 00 00 0b 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3b 00 5e 32 01 00 00 00 09 0e 00 00 20 00 00 00 0b 40 00 00 0b 60 3f 00 7f 7a 7f 79 7f 78 7f 7f 79 7f 79 7f 77 7f 7f 79 7f 75 7f 78 7f 79 7f 7f 75 7f 74 7f 76 7f 7f 77... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 bb 00 5e b2 01 00 00 09 0e 00 00 20 00 00 0b 40 00 00 0b 60 00 ff fa ff f9 ff f8 ff f9 ff f9 ff f7 ff f9 ff f5 ff f8 ff f9 ff f5 ff f4 ff f6 ff f7 ff f8 ff f6 ff fa ff f8 ff f7 ff f7 ff f8... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 5f 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0b 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 5f 00 00 32 00 00 09 0e 00 00 20 00 00 0b 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3c 00 5f 32 01 00 00 00 09 0e 00 00 20 00 01 00 0b 60 00 00 0b 00 00 00 00 02 00 02 00 02 00 00 03 00 04 00 05 00 00 00 00 04 00 04 00 02 00 00 02 00 05 00 02 00 00 02... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 bc 00 5f b2 01 00 00 09 0e 00 00 20 00 00 0b 60 00 00 0b 80 00 00 02 00 02 00 02 00 03 00 04 00 05 00 00 00 04 00 04 00 02 00 02 00 05 00 02 00 02 00 01 00 01 00 04 00 06 00 03 ff fd ff ff... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 60 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0b 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 60 00 00 32 00 00 09 0e 00 00 20 00 00 0b 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3d 00 60 32 01 00 00 00 09 0e 00 00 20 00 11 00 0b 00 00 00 0b 20 3f 00 7f 7d 7f 7d 7f 7b 7f 7f 7e 7f 7c 7f 7c 7f 7f 7c 7f 7c 7f 79 7f 7a 7f 7f 7b 7f 7c 7f 7d 7f 7f 7d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 bd 00 60 b2 01 00 00 09 0e 00 00 20 00 00 0b 80 00 00 0b a0 00 ff fd ff fd ff fb ff fe ff fc ff fc ff fc ff fc ff f9 ff fa ff fb ff fc ff fd ff fd ff fc ff fd ff fe ff fd ff fd 00 01 ff fd... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 61 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0b 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 61 00 00 32 00 00 09 0e 00 00 20 00 00 0b a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3e 00 61 32 01 00 00 00 09 0e 00 00 20 00 11 00 0b 20 00 00 0b 40 3f 00 7f 7d 7f 7d 7f 7e 7f 7f 7e 7f 7e 7f 7d 7f 7f 7d 7f 7b 7f 7d 7f 7d 7f 7f 7e 7f 7e 7f 7c 7f 7f 7f... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 be 00 61 b2 01 00 00 09 0e 00 00 20 00 00 0b a0 00 00 0b c0 00 ff fd ff fd ff fe ff fe ff fe ff fd ff fd ff fb ff fd ff fd ff fe ff fe ff fc ff ff ff ff ff fb ff fa ff fb ff fe ff fc ff fe... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 62 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0b 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 62 00 00 32 00 00 09 0e 00 00 20 00 00 0b c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 3f 00 62 32 01 00 00 00 09 0e 00 00 20 00 11 00 0b 40 00 00 0b 60 00 00 00 03 00 05 00 04 00 00 05 00 06 00 08 00 00 04 00 00 00 06 00 03 00 00 05 00 03 00 05 00 00 06... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 bf 00 62 b2 01 00 00 09 0e 00 00 20 00 00 0b c0 00 00 0b e0 00 00 03 00 05 00 04 00 05 00 06 00 08 00 04 00 00 00 06 00 03 00 05 00 03 00 05 00 06 00 05 00 05 00 04 00 08 00 06 00 06 00 07... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 63 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0b 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 63 00 00 32 00 00 09 0e 00 00 20 00 00 0b e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 40 00 63 32 01 00 00 00 09 0e 00 00 20 00 10 00 0b 60 00 00 0c 00 3f 00 7f 7d 7f 7d 7f 7a 7f 7f 7e 7f 7c 7f 7e 7f 7f 7e 7f 7c 7f 7d 7f 7c 7f 7f 7d 7f 7a 7f 7a 7f 7f 79... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c0 00 63 b2 01 00 00 09 0e 00 00 20 00 00 0b e0 00 00 0c 00 00 ff fd ff fd ff fa ff fe ff fc ff fe ff fe ff fc ff fd ff fc ff fd ff fa ff fa ff f9 ff fd ff f9 ff ff ff fb ff f9 ff fc ff fc... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 64 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0c 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 64 00 00 32 00 00 09 0e 00 00 20 00 00 0c 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 41 00 64 32 01 00 00 00 09 0e 00 00 20 00 00 00 0c 00 00 00 0c 20 00 00 00 05 00 03 00 07 18 00 06 7f 7f 00 00 00 00 01 00 03 00 06 00 04 00 00 04 00 04 00 03 00 00 05... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c1 00 64 b2 01 00 00 09 0e 00 00 20 00 00 0c 00 00 00 0c 20 00 00 05 00 03 00 07 00 06 ff ff 00 00 00 01 00 03 00 06 00 04 00 04 00 04 00 03 00 05 00 02 00 04 00 06 00 04 00 04 00 03 00 03... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 65 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0c 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 65 00 00 32 00 00 09 0e 00 00 20 00 00 0c 20 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 42 00 65 32 01 00 00 00 09 0e 00 00 20 00 00 00 0c 20 00 00 0c 40 0f 00 00 00 7f 7f 7f 7c 7f 7f 7f 7f 7e 7f 7d 7f 73 7e 7f 7e 00 03 7f 7f 7e 7f 7b 7f 7b 7f 7d 00 3f 00... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c2 00 65 b2 01 00 00 09 0e 00 00 20 00 00 0c 20 00 00 0c 40 00 00 00 ff ff ff fc ff ff ff fe ff fd ff fe ff fe 00 03 ff ff ff fb ff fb ff fd 00 00 ff ff ff ff ff ff 00 01 00 00 00 00 ff fe... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 66 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0c 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 66 00 00 32 00 00 09 0e 00 00 20 00 00 0c 40 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 43 00 66 32 01 00 00 00 09 0e 00 00 20 00 00 00 0c 40 00 00 0c 60 00 00 00 02 00 01 00 01 06 00 00 00 02 7f 7e 00 0c 01 00 00 7f 7e 00 01 06 00 04 00 00 7f 7d 00 30 01... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c3 00 66 b2 01 00 00 09 0e 00 00 20 00 00 0c 40 00 00 0c 60 00 00 02 00 01 00 01 00 00 00 02 ff fe 00 01 00 00 ff fe 00 01 00 04 00 00 ff fd 00 01 ff fe 00 01 00 00 00 02 00 00 00 01 00 04... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 67 00 00 32 00 00 00 09 0e 00 00 20 00 00 00 0c 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 67 00 00 32 00 00 09 0e 00 00 20 00 00 0c 60 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 44 00 67 32 01 00 00 00 09 0e 00 00 20 00 01 00 0c 60 00 00 0c 00 00 00 00 05 00 01 00 01 00 00 00 00 00 00 02 00 00 04 00 02 00 05 00 00 06 00 03 00 03 7f 7e 00 00 02... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c4 00 67 b2 01 00 00 09 0e 00 00 20 00 00 0c 60 00 00 0c 80 00 00 05 00 01 00 01 00 00 00 00 00 02 00 04 00 02 00 05 00 00 00 03 00 03 ff fe 00 02 00 05 00 03 00 01 00 01 00 02 ff ff 00 00... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 68 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0c 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 68 00 00 32 00 00 09 0e 00 00 20 00 00 0c 80 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 45 00 68 32 01 00 00 00 09 0e 00 00 20 00 11 00 0c 00 00 00 0c 20 00 00 00 02 00 01 00 01 07 00 00 00 00 7f 7d 7f 43 7f 00 00 00 00 7f 7e 07 00 03 00 00 7f 7d 7f 7f 7d... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c5 00 68 b2 01 00 00 09 0e 00 00 20 00 00 0c 80 00 00 0c a0 00 00 02 00 01 00 01 00 00 00 00 ff fd ff ff 00 00 00 00 ff fe 00 03 00 00 ff fd ff fd ff ff ff fd ff ff 00 02 00 01 ff ff 00 00... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 69 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0c 20 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 69 00 00 32 00 00 09 0e 00 00 20 00 00 0c a0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 46 00 69 32 01 00 00 00 09 0e 00 00 20 00 11 00 0c 20 00 00 0c 40 00 00 00 03 00 03 00 02 00 00 02 00 02 00 02 00 00 01 00 02 00 02 00 01 60 7f 7f 00 03 00 07 00 33 00... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c6 00 69 b2 01 00 00 09 0e 00 00 20 00 00 0c a0 00 00 0c c0 00 00 03 00 03 00 02 00 02 00 02 00 02 00 01 00 02 00 02 00 01 ff ff 00 03 00 07 00 00 ff fd 00 01 ff fe 00 01 00 01 00 01 00 05... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 6a 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0c 40 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 6a 00 00 32 00 00 09 0e 00 00 20 00 00 0c c0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 47 00 6a 32 01 00 00 00 09 0e 00 00 20 00 11 00 0c 40 00 00 0c 60 3f 00 7f 79 7f 7e 7f 7a 7e 7f 7e 7f 7f 7f 7d 00 3f 00 7f 7e 7f 7f 7f 7d 7e 7f 7e 7f 7e 7f 7c 00 3c 01... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c7 00 6a b2 01 00 00 09 0e 00 00 20 00 00 0c c0 00 00 0c e0 00 ff f9 ff fe ff fa ff fe ff ff ff fd 00 00 ff fe ff ff ff fd ff fe ff fe ff fc 00 01 ff ff ff fd 00 01 00 00 ff fa ff fc ff fd... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 6b 00 00 32 00 00 00 09 0e 00 00 20 00 00 20 0c 60 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 6b 00 00 32 00 00 09 0e 00 00 20 00 00 0c e0 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (9395): f0 00 20 3c 10 00 24 01 48 00 6b 32 01 00 00 00 09 0e 00 00 20 00 10 00 0c 60 00 00 0d 00 3f 00 7f 7e 7f 7e 7f 7f 01 00 00 00 01 00 01 7f 40 7e 00 03 00 00 00 01 06 00 01 00 00 7f 7e 00 30 02... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (8214): 01 c8 00 6b b2 01 00 00 09 0e 00 00 20 00 00 0c e0 00 00 0d 00 00 ff fe ff fe ff ff 00 00 00 01 00 01 ff fe 00 03 00 00 00 01 00 01 00 00 ff fe 00 02 ff ff 00 00 00 00 00 01 00 04 ff fc ff fe... DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (27): f0 00 20 3c 10 00 00 00 6c 00 00 32 00 00 02 09 0e 00 00 16 3c 00 00 0d 00 00 f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (17): 00 6c 00 00 32 00 00 09 0e 00 00 16 bc 00 0d 00 00 DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (6684): f0 00 20 3c 10 00 24 01 49 00 6c 32 01 00 01 00 09 0e 00 00 16 3c 00 00 0d 00 00 00 0d 16 7f 3c 7f 7d 7f 7f 7f 7e 19 00 01 7f 7c 00 00 7f 70 7f 7f 7f 00 00 00 00 00 00 00 00 00 00 00 00 00 03... DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (5842): 01 c9 00 6c b2 01 00 00 09 0e 00 00 16 bc 00 0d 00 00 00 0d 16 bc ff fd ff ff ff fe 00 01 ff fc 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 01 00 00 00 01 00 01 ff f9 ff fc... DEBUG:connectors/elektron.c:1808:(elektron_download_smplrw): 857788 bytes received DEBUG:backend_alsa.c:211:(backend_tx_sysex_internal): Raw message sent (18): f0 00 20 3c 10 00 00 00 6d 00 00 31 00 00 00 09 0e f7 DEBUG:connectors/elektron.c:1000:(elektron_tx): Message sent (9): 00 6d 00 00 31 00 00 09 0e DEBUG:backend_alsa.c:521:(backend_rx_sysex): Raw message received (22): f0 00 20 3c 10 00 24 01 4b 00 6d 31 00 00 02 09 0e 00 0d 16 3c f7 DEBUG:connectors/elektron.c:1045:(elektron_rx): Message received (13): 01 cb 00 6d b1 00 00 09 0e 00 0d 16 bc DEBUG:sample.c:217:(sample_get_wave_data): Frames: 428862; sample rate: 48000; channels: 1 DEBUG:sample.c:219:(sample_get_wave_data): Loop start at 0; loop end at 0 DEBUG:utils.c:307:(save_file_char): Saving file ./BASS_C3.wav... DEBUG:utils.c:313:(save_file_char): 857896 B written DEBUG:backend.c:355:(backend_destroy): Destroying backend... DEBUG:backend.c:286:(backend_destroy_data): Destroying backend data... ```
dagargo commented 1 year ago

What I also experienced when I call the electron-cli is, that the play and stop is set at the same time when the command is executed.

The left side of Elektroid (GUI) can detect changes in the currently open directory and will reload itself automatically in this case. If a sample is playing when it reloads, the sample will stop playing and will be unselected before reloading the content. After reloading, no sample will be selected.

It just behaves as if the user had clicked on the refresh button.

Also trying the sample download on Elektroid, changed to to (play+stop=pause right?) So it is changing this default state.

Not sure what you mean by that. Could you elaborate, please?

dagargo commented 1 year ago

This patch proves the directory read bug. This is not a solution, just showing it for illustrative purposes..

$ git diff
diff --git a/src/elektroid.c b/src/elektroid.c
index 9d298b8..4a9531d 100644
--- a/src/elektroid.c
+++ b/src/elektroid.c
@@ -2538,8 +2538,7 @@ elektroid_add_download_task_path (const gchar * rel_path,
   dst_abs_path = chain_path (dst_dir, rel_path);

   //Check if the item is a dir. If error, it's not.
-  if (remote_browser.fs_ops->readdir (remote_browser.backend, &iter,
-                                     src_abs_path))
+  if (1)
     {
       dst_abs_dir = dirname (dst_abs_path);
       if (file_matches_extensions (src_abs_path, remote_browser.extensions))
dagargo commented 1 year ago

After doing some testing, I've pushed a few commits fixing the segmentation fault.

Besides, the preparation of transfers can be canceled now properly by clicking on the cancel button in the dialog.

dagargo commented 1 year ago

Regarding the underlying bug, I've found a partial solution.

The issue happens because Elektroid needs to discern if a path points to a file or a directory in order to copy a single file or copy a directory recursively. Instead of trying to read the path as a directory and return depending on this (this is what fails now), we can previously check if the path points to a file (this feature was already in the code).

Still, this will fail if the path doesn't exist albeit this is something that shouldn't happen as long as the user is not working the with the sample filesystem on both the machine and Elektroid at the same time.

Pushed to branch bugfix_read_non_existing_dir.

Unsure if merging this is a good idea as I think the bug really needs to be solved in the Digitakt firmware. But this would be totally harmless if merged.

Is this working for you, @marco-polo-github?

marco-polo-github commented 1 year ago

What I also experienced when I call the electron-cli is, that the play and stop is set at the same time when the command is executed.

The left side of Elektroid (GUI) can detect changes in the currently open directory and will reload itself automatically in this case. If a sample is playing when it reloads, the sample will stop playing and will be unselected before reloading the content. After reloading, no sample will be selected.

It just behaves as if the user had clicked on the refresh button.

Also trying the sample download on Elektroid, changed to to (play+stop=pause right?) So it is changing this default state.

Not sure what you mean by that. Could you elaborate, please?

I mean on the DT device the buttons play and stop change their lightning if an action from electron-cli is executed. You can see that if you execute switch on the DT and then watch the keys when executing electron-cli or Elektronid GUI. ...just an observation...

dagargo commented 1 year ago

the play and stop

Oh! I thought you were talking about the buttons in the GUI. Now I understand.

When Elektroid connects to the device it stops it. That's it. It is by design. But it is probably not needed. In fact, this is only happening with the ALSA (default) backend.

This is the related code.

https://github.com/dagargo/elektroid/blob/81dc849cbc9dc7ef58822e55a73427fad971ff5a/src/backend_alsa.c#L97-L101

I decide to stop the machines because it's a kind of a warning as transferences might impact the accuracy of the clock and playback if used intensively.

Do you consider this useful or harmful?

marco-polo-github commented 1 year ago

The branch bugfix_read_non_existing_dir works fine, it is currently downloading. It works for the folder and also for single samples. Great job!

marco-polo-github commented 1 year ago

the play and stop

Oh! I thought you were talking about the buttons in the GUI. Now I understand.

When Elektroid connects to the device it stops it. That's it. It is by design. But it is probably not needed. In fact, this is only happening with the ALSA (default) backend.

This is the related code.

https://github.com/dagargo/elektroid/blob/81dc849cbc9dc7ef58822e55a73427fad971ff5a/src/backend_alsa.c#L97-L101

I decide to stop the machines because it's a kind of a warning as transferences might impact the accuracy of the clock and playback if used intensively.

Do you consider this useful or harmful?

No, to stop makes absolutely sense. But isn't this just a pause, like a press play and again press play to pause? But for me that is fine. For the file transfer process, I wonder why Elektron is not showing anything in the display if a file operation is ongoing.

dagargo commented 1 year ago

Great that it works!

I'm leaving this open and we'll wait a few days or so to see if the issue gets fixed in a new firmware. Then I'll decide about merging this or not. But, for now, this just works.

dagargo commented 1 year ago

But isn't this just a pause, like a press play and again press play to pause? But for me that is fine.

Honestly I don't know.

We're just sending a stop MIDI message. See the specification for more details. Perhaps we could send the byte twice to see if there is any difference.

I see that both play and stop buttons are lit. Curious. I'll investigate this a bit.

marco-polo-github commented 1 year ago

Thanks a lot, really great job what you do with this project! I owe you another coffee / beer!

dagargo commented 1 year ago

Elektron has acknowledged the bug but as it is unknown when they will release a new firmware, I think it's better to merge the branch and move on.

dagargo commented 1 year ago

Merged into master.