Gregor Riepl
Gregor Riepl
No, it should load more or less instantly. The firmware is very small, and the I2C interface runs at 400kbit/s, so it should take a few seconds at most.
Yeah, this sounds like a problem I've seen many times before. It's happens because finger tracking doesn't work reliably. If you pass the correct parameters to the driver, it should...
You may still have to use `xinput_calibrator` to map the touch screen to the display, but I'm glad it's working for you now. :) The Android driver I based gslx680_ts_acpi...
Which fwtool parameters did you use exactly? I'm going to add your firmware to https://github.com/onitake/gsl-firmware , so others can use it too.
Ah! So, I'll just note in the README that the Lark Ultimate 7i WIN is compatible.
I don't think that sigboe is maintaining this driver any more. `silead.ko` lives inside the Linux kernel tree now. Try http://vger.kernel.org/vger-lists.html#linux-input - perhaps one of the input subsystem maintainers can...
My 5¢: Enum-like types like `atscPmtStreamType` shouldn't be structs, but simple types, and the `PmtStreamType.StreamType()` function should return the enum type and not `uint8`. I'd suggest changing pmtstreamtype.go to the...
I found some alternatives: - `curl --http2 --http2-prior-knowledge` can do raw HTTP/2. - h2load does load tests and also supports insecure mode - Possibly some of these work too: https://github.com/http2/http2-spec/wiki/Tools
The current main still has `context.TODO()` in many places. There's two ways to solve this: Propagate a context object through all functions that call the k8s API, or use a...
This seems to be same issue as #100 . https://github.com/hashicorp/packer/issues/11783#issuecomment-1137052770 mentioned another workaround: Add ` extra_arguments = [ "--scp-extra-args", "'-O'" ]` to the provisioner. `ssh_transfer_method = smart` should look like...