2024-04-05 02:46 AM
Hi,
I am currently working on a project using an STM32U5 series microcontroller, and I have encountered a significant build issue with numerous errors related to the HAL driver.
Attached picture is just some of error code. (First and the last page)
It made1675 errors and 381 warnings.
I think my code doesn't have any problem becuase It worked well just few minutes ago.
Thank you.
Solved! Go to Solution.
2024-04-22 05:06 AM
I cannot resolve this issue.
but I made new project with same code, and It work!
Thank you all for help :)
2024-04-05 02:50 AM
Additional information,
I am using NUCLEO-U575ZI-Q board, and entire project is about I2C.
1 U575ZI-Q master and 3 LK432KC slave board.
2024-04-05 02:53 AM
Project Explorer said some of my Inc, src files in Drivers foler had problems.
2024-04-05 02:57 AM
What have you already tried to fix it ?
2024-04-05 03:00 AM
Nothing..
2024-04-05 03:01 AM
Hello @eunni and welcome to the ST Community :smiling_face_with_smiling_eyes:.
can you share your project So that we can check. Also, what are the versions of the STM32CubeIDE, CubeMX and CubeH5 that you are using. Also, have you downloaded your CubeH5 Library As a .Zip from Github.
Best Regards.
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2024-04-05 03:02 AM
@eunni wrote:It made1675 errors and 381 warnings.
Typically, that happens because of 1 (or a few) early error which then causes a load of consequent errors.
A common example is omitting to #include a required header - which will, of course, result in an error on every single place that tries to use something from that header.
Therefore, you need to start by looking at the very first reported error.
@eunni wrote:Attached picture is just some of error code. (First and the last page)
It would be better to include the errors as text, rather than a pictures.
Copy & paste using the code button:
"implicit declarations" occur when you haven't provided an explicit declaration for the function you're calling.
Again, this often means that a needed header file is missing - either the #include is missing, or it failed.
It doesn't look like your Console window has all the errors - it's presumably overflowed, and lost the very first ones.
There was a thread recently about how to find the full log ...
2024-04-05 03:04 AM
Hello,
Maybe you need to share your project to let other members to help you efficiently.
2024-04-05 03:07 AM
2024-04-05 03:10 AM
Hello,
You need to share your project folder instead of the main file.