STM32CubeMX PLLSAI config for STM32L4
Thank you for your response.So far this solvesthe issue.
I will highjack this thread to ask additional questions.Ido not know if this is also connected with 1.9.0 or it is a known issue (samePLLSAI1 clk config, but with additional peripherals, on 1.6.0 works).I am using custom board with STM32L476 on it.
I use CubeMX to generate code, i only set SD, JTAG, and RCC peripherals Clock config as shown on provided image:
Generated project (without changing anything in it) successfully builds, but itfails in file
''stm32l4xx_hal_rcc_ex.c'' line 2948(using 1.9.0 package)
#if !defined(RCC_PLLSAI1M_DIV_1_16_SUPPORT)
||
(((READ_BIT(RCC->PLLCFGR, RCC_PLLCFGR_PLLM) >> RCC_PLLCFGR_PLLM_Pos) + 1U) != PllSai1->PLLSAI1M)
#endif�?�?�?�?
(it eventually evaluatesto ''[7]+1 !=1'').
I admit i did not research this further, but it is the first time i generated project with CubeMX and peripheral timing asserts failed on such configuration. And a general question. What is the state of STM provided eMMC (with possible FatFs) peripheral code for L4 family of cards? Will it beprovided at anytime, or will it always generate placeholders in code?