Wrong stm32h7xx_hal.h include file in generated STM32H7R3 project
We develop firmware on STM32H7R3L8HxH.
STM32CubeIDE version is 1.19.0
MxCube version is 6.15.0
The problem is that code generator creates additional wrong include file for "regular" H7 MCUs:
#include "stm32h7rsxx_hal.h"
#include "stm32h7xx_hal.h"As this second file does not exist, compiler gives error:
fatal error: stm32h7xx_hal.h: No such file or directoryIn application project it appears in main.h
In bootloader project the issue does not appear, but there is a blank line instead.
In extmemloader project it appears in extmemloader_init.h
Had same problem already STM32CubeIDE v1.18 and we have been manually fixing it (by removing bad include) so far, but it appears that it won't get fixed by itself so I report the issue now.
