Question
BUG: assert_fail() fails
Micro: STM32F030RCTx.
Compiler: GCC 9.2.1
Package: FW_F0 V1.11.0
When USE_FULL_ASSERT is enabled, STM32CubeMX generates this function in main.c:
void assert_failed(char *file, uint32_t line)
{
...
}however the prototype in stm32f0xx_hal_conf.h has been changed to this:
void assert_failed(uint8_t* file, uint32_t line);This causes a compile error from GCC "error: conflicting types for 'assert_failed'"
Easy fix, so I hope it makes it for the next release :)
Cheers
David
