Commit 6079066e authored by Youssef Zini's avatar Youssef Zini Committed by Erwan Gouriou
Browse files

stm32mp2xx_hal_conf.h: remove use_full_assert



Remove the use of full assert in stm32mp2xx_hal_conf.h. As done with
all other STM32 HAL drivers, this prevents build errors when compiling
STM32Cube-based code in Zephyr and allows successful compilation even
if assertion checks are not implemented, as the code still functions
correctly without them.

Signed-off-by: default avatarYoussef Zini <youssef.zini@savoirfairelinux.com>
parent 78d76b36
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -47,4 +47,10 @@ Patch List:
   * HAL LVDS module disabled
   - Disabled HAL_LVDS_MODULE_ENABLED as LVDS HAL is not available yet

   * USE_FULL_ASSERT disabled
   - Disabled the USE_FULL_ASSERT macro to prevent build errors when compiling
     STM32Cube-based code in Zephyr. This allows successful compilation even if
	 assertion checks are not implemented, as the code still functions
	 correctly without them.

   See release_note.html from STM32Cube
+1 −1
Original line number Diff line number Diff line
@@ -241,7 +241,7 @@ in voltage and temperature. */
  * @brief Uncomment the line below to expanse the "assert_param" macro in the
  *        HAL drivers code
  */
#define USE_FULL_ASSERT    1
/* #define USE_FULL_ASSERT    1 */

/* Includes ------------------------------------------------------------------*/
/**