cancel
Showing results for 
Search instead for 
Did you mean: 

how to solve this problem?

idrissmc
Associate II

hello everyone,

how can I solve this problem, I'm stucking here, I can't understand where is the problem, this error is duplicated 4 times

thank you

0693W000003P4vIQAS.png

2 REPLIES 2
TDK
Guru

You've got two conflicting structure definitions in

basic_gui.h

stm32746g_discovery_lcd.h

If they are actually unique structures, change the naming/use of one so it stops conflicting in the namespace.

The usage here might be the simplest to change

stm32746g_discovery_lcd.h

stm32746g_discovery_lcd.c

If they are actually supposed to be the same thing, define the structure and content in ONE include file, and unify them and related source code some they become common.

Use "grep" or your static analysis tools, to find all instance/usage within your project. Make local copies of the BSP code so you can modify it.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..