gdsports
gdsports
I have 4 gamepads, bootmouse, and bootkeyboard on Windows 10 and Linux. I have not done much testing though. The trick is to remove the Arduino CDC ACM port (frees...
None of the changes are in the the HID library. The changes are in the Adafruit SAMD board package but they cannot be made permanent. Doing so would remove the...
Yes, I do not see any problems with the HID library. Removing the USB serial is optional. Very handy if you want to want to free up endpoints for more...
I have an example. One Trinket M0 (SAMD21) is in host mode and the other in device mode. They are cross connected via UART TX and RX for the HID...
Thanks, the updated toolchain fixes the "-std=gcc++14" error. I removed ~/.arduino15 to force the IDE to download the latest packages and archives. But the build fails with "libfl.so.2: cannot open...
I installed libfl2 to get the missing shared library libfl.so.2 but this might not be the correct solution since it requires root privs. `sudo apt install libfl2` The IDE finished...
Yes, libfl and libm. Perhaps the ARM version is built with different options. ``` pi@rpi44gb:~ $ ldd ~/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/7-2017q4/bin/arm-none-eabi-ar linux-vdso.so.1 (0xbeeec000) /usr/lib/arm-linux-gnueabihf/libarmmem-${PLATFORM}.so => /usr/lib/arm-linux-gnueabihf/libarmmem-v7l.so (0xb6f22000) libfl.so.2 => /usr/lib/arm-linux-gnueabihf/libfl.so.2 (0xb6ef6000) libdl.so.2 =>...
Static linking libs makes a lot of sense. I noticed one oddity that may not be relevant. Looks like the --version option reports 7-2019-q4-major. Maybe a typo? ``` pi@rpi44gb:~ $...