Sven
Sven
This allows using Silicon Labs' CP210x runtime library while having the serial port open and in use. That can be used for e.g. controlling the GPIO on Windows.
When I set a kernel command line parameter that contains a quoted string (like a dynamic debugging parameter) in u-boot like so ``` => setenv bootargs console=ttymxc5,115200 root=PARTUUID=3bd84f36-02 rootfstype=ext4 shell...
In addition to the `balena ssh` command, it would be helpful to be able to have `balena scp`. As far as I understand, this will require a change in the...
When `open` in `pal_i2c_init` (pal/linux/pal_i2c.c) fails, this error is not handled. Even when handling the error, calling `optiga_util_open_application` freezes. This is what I changed in order to handle the error:...
cyclonedx-gomod doesn't work in module git clones that were created with `--shared`. This is e.g. done by the Yocto build system. Here's a way to reproduce this: ``` mkdir bare_repo...
GCC version 10 changes the default behaviour from -fcommon to -fno-common which results in a linker error. Signed-off-by: Sven Schwermer
Hi! When setting `CONFIG_SND_MFLD_MACHINE=y` the kernel tries to probe the SST PCI device `intel_sst_probe`, but fails in `sst_context_init` because platform data (`pdata`) is not set in the driver context. I...
marshmallow 3.0.0 doesn't perform validation during dump[s]. In order to get the equivalent behaviour as before, validate must be called. However, this fails with "Enum name must be string" for...
As per RFC 7252, the CoAP ping (empty, confirmable message) must be responded to with a reset message. Resolves #603 ## Summary by CodeRabbit - **Refactor** - Simplified the messaging...