Jordan Yates

Results 17 issues of Jordan Yates

Since [this commit](https://github.com/zephyrproject-rtos/trusted-firmware-m/commit/0accf9832f1348bf40ae69c708dd559f2878f9ae#diff-c519d875b7642647e0998f3d7fd0615b9312d83405b1b8193a8901d2948e4017R157), the Trusted-Firmware M project requires the embedded public keys to be in a "raw" (not RFC5840) form. As far as I can tell, there is currently no...

area: imgtool

The version of `imgtool` distributed through [PyPi](https://pypi.org/project/imgtool/#history) is out of date. Specifically, it does not contain the fixes contained in #1973.

The SAU register defines and bitfields are still useful for applications that are not running in the secure state. e.g. An application triggers a SecureFault, during which the secure handler...

Add `k_heap_array_get` as an alternative to `sys_heap_array_get`, which only returns statically defined heaps (those defined with `K_HEAP_DEFINE` or `K_HEAP_DEFINE_NOCACHE`), but doesn't depend on the application guessing a value for `CONFIG_SYS_HEAP_ARRAY_SIZE`.

area: Kernel
area: Samples
Release Notes

Move power configuration from the device init function into the `DISK_IOCTL_CTRL_INIT` and `DISK_IOCTL_CTRL_DEINIT` handlers. If `pwr-gpios` is defined, this ensures that the card is not powered up until requested, and...

platform: STM32
area: Disk Access

Don't automatically enable device runtime PM on the SPI port just because `PM_DEVICE_RUNTIME` is enabled. Require the user to explicitly call `pm_device_runtime_enable` on the port, or add `zephyr,pm-device-runtime-auto` to the...

area: SPI
platform: STM32

Do not artificially limit the size of the USB request to the endpoint MPS, as this forces multiple round trips through the CDC ACM class implementation when the TX FIFO...

area: USB