Yong Cong Sin
Yong Cong Sin
Zephyr's build time generated `version.h` is now in the `zephyr` to provide proper namespace, update the includes of this module accordingly. See ZephyrProject upstream PR at: https://github.com/zephyrproject-rtos/zephyr/pull/63973 Take 1: #8459
Currently, getting any channel >= `SENSOR_CHAN_VSHUNT` would result in a `NULL` pointer deref: ``` uart:~$ sensor get sensor@0 32 channel idx=32 (null) shift=6 num_samples=1 value=9220133425350000000ns (32.000000) uart:~$ sensor get sensor@0...
#63172 reworked the LUT struct in the `multilevel_irq.c` (formerly `sw_isr_table.c`) to have an additional `struct device` pointer member so that Zephyr can know the controller responsible for an interrupt request...
Namespaced the generated headers with `zephyr/` to prevent potential conflict with other headers. Introduced a Kconfig (`CONFIG_LEGACY_GENERATED_INCLUDE_PATH`) to support legacy generated header include paths in the mean time. Fixes #60377...
- Revert "#71052" - Update the description of RISC-V's `CONFIG_INCLUDE_RESET_VECTOR` - Update `RISCV_CORE_NORDIC_VPR` to select `INCLUDE_RESET_VECTOR` for bisectability Fixes #75145
Test fix
Update the include path of generated headers. See: - https://github.com/zephyrproject-rtos/zephyr/pull/63973
Zephyr's build time generated `version.h` is now in the `zephyr` to provide proper namespace, update the includes of this module accordingly. See https://github.com/zephyrproject-rtos/zephyr/pull/63973
Update the include path of generated headers. See: - https://github.com/zephyrproject-rtos/zephyr/pull/63973 - https://github.com/mcu-tools/mcuboot/pull/1965
`irq_set_affinity(irq, mask)` allows the runtime affinity configuration of an interrupt line, which can be helpful in tuning the performance in a SMP setup (i.e. `irqbalance`). This commit currently only creates...