Frank Engelhardt
Frank Engelhardt
> did you unpack it into new/clean folder? Yes, this is even my first real FAF installation. I tried around a bit a year ago, but did not come this...
Btw, specifying the `lib` folder in the class path does also not help: LC_ALL=C INSTALL4J_JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/ JDK_JAVA_OPTIONS="--class-path ~/opt/faf/lib" ./faf-client returns ``` NOTE: Picked up JDK_JAVA_OPTIONS: --class-path ~/opt/faf/lib Error: Could not find...
Ok, had some luck with that : java -cp lib/*:native/* com.faforever.client.Main That brings up the launcher. Basically, I have just removed the "install4j." prefix from the class name. I did...
I am working on SPI support right now. I can maybe add some more, it seems not that difficult.
I will give `periph_usbus` a try.
I have my `periph_usbus` code almost ready. However, I have doubts if I understood correctly what the two event handlers should do, and what should happen in the ISR and...
> With these changes, I can now receive the setup request from the host. Its interrupt is fired but never served by `_usbdev_esr()` and it loops forever so we never...
Added a fixup with your suggestions @dylad, and improved handling of `INTS` in `isr_usbctrl()`. Now the line reset seems to work, and the EP 0 is initialized. I had no...
Now the setup requests are recognized by usbus, but control flow is still garbage.
> Setup packets are not put in EP0 buffer but at the beginning of DPSRAM (offset 0). Wow, I guess I misread the data sheet here... Some tinkering today did...