Question
File stm32xxxx_hal_conf.h non-homogeneity
in stm32xxxx_hal_conf.h files there is the declaration of assert_failed()
F4: void assert_failed(uint8_t* file, uint32_t line);
H7:void assert_failed(uint8_t* file, uint32_t line);
L4: void assert_failed(char* file, uint32_t line);
Its not the same prototype in all conf files.
This causes warnings when compiling my portable codes.
Pity.
