STM32U083-DK Issue with compiling code
I have an STM32U83C-DK board and downloaded the git repository GitHub - STMicroelectronics/STM32CubeU0: STM32Cube MCU Full Package for the STM32U0 series - (HAL + LL Drivers, CMSIS Core, CMSIS Device, MW libraries plus a set of Projects running on all boards provided by ST)
So that I could run the code from this example
I have the drivers downloaded and in the correct file location however, I have this issue where a specific file isn't found.
Below is the error message from the STM32CubeIDE
/../../Drivers/STM32U0xx_HAL_Driver/Inc/stm32u0xx.h:101:12: fatal error: stm32u083xx.h: No such file or directory
I have downloaded the drivers file as well but I can't find the file within that directory for stm32u83xx.h and was wondering if there's a way to still build the project without it? I did manually put the stm32u0xx.h file into the HAL_Driver directory because it looked like it was missing it but even with it included, it was still showing the error. I don't know where to look for the stm32u83xx.h because it's referenced in the stm32u0xx.h but not included in the drivers folder (https://github.com/STMicroelectronics/stm32u0xx_hal_driver/tree/f949e9dd4d8509051e0e4fd34067a3cfc37fe089).
Just for your information, I'm learning how to code the LCD display and am using the example code for reference.

