FRASTM

Results 18 comments of FRASTM

This fixes the pb as reported by issues https://github.com/zephyrproject-rtos/zephyr/issues/47921 and https://github.com/zephyrproject-rtos/zephyr/issues/48007 In any case the test should also PASS when `CONFIG_GPIO_GET_CONFIG=n` suggestion : flag `pin_get_config() `with `#ifdef CONFIG_GPIO_GET_CONFIG`

When the function to get the gpio pin config was introduced by the PR #43225, _flags_ was supposed to give the position of the gpio : in/out, GPIO_OPEN_DRAIN, GPIO_PULL_DOWN/GPIO_PULL_UP I...

BTW if you could please include the change in the [tests/drivers/gpio/gpio_basic_api/src/test_gpio_port.c](https://github.com/zephyrproject-rtos/zephyr/pull/48159/commits/717e6d26f7d57264def8fe67a956b864bd3e7735#diff-0cf45b2fd058a429827c4bfe9c9602d63aa2cce9b39e3779a8bfb354ba08e331) to handle the correct error code from the gpio_pin_get_config return ``` rc = gpio_pin_get_config(dev, PIN_OUT, &flags_get); if (rc ==...

> > BTW if you could please include the change in the [tests/drivers/gpio/gpio_basic_api/src/test_gpio_port.c](https://github.com/zephyrproject-rtos/zephyr/pull/48159/commits/717e6d26f7d57264def8fe67a956b864bd3e7735#diff-0cf45b2fd058a429827c4bfe9c9602d63aa2cce9b39e3779a8bfb354ba08e331) to handle the correct error code from the gpio_pin_get_config return > > ``` > > rc =...

Wait for PR https://github.com/zephyrproject-rtos/zephyr/pull/47176

Could this issue be a duplicate of the https://github.com/STMicroelectronics/STM32CubeH7/issues/170?

> Requires buy-in and approval from Cube package FW team There answer is they won't change anything in their legacy HAL drivers. Then we can manage to make the function...

Note that when CONFIG_MISRA_SANE=y build error occur when compiling samples/drivers/jesd216/ ``` ~/samples/drivers/jesd216/src/main.c: In function 'main': ~/zephyr/samples/drivers/jesd216/src/main.c:325:17: error: ISO C90 forbids variable length array 'dw' [-Werror=vla] 325 | uint32_t dw[php->len_dw]; |...

Requires the ../zephyr/drivers/flash/flash_stm32_ospi.c to support the XiP as in https://github.com/zephyrproject-rtos/zephyr/pull/61082 $ west build -p always -b b_u585_iot02a -d build_mcuboot ../bootloader/mcuboot/boot/zephyr $ west flash -d build_mcuboot --> flash the build_mcuboot/zephyr/zephyr.bin at...

when building the mcu boot there is no slot for image (no image, only a mcuboot) flashing at boot_partition of the flash0 The way to build the mcuboot for stm32...