Skip to main content
idrissmc
Associate III
August 11, 2020
Question

how to solve this problem?

  • August 11, 2020
  • 2 replies
  • 1344 views

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

This topic has been closed for replies.

2 replies

TDK
August 11, 2020
Tesla DeLorean
Guru
August 12, 2020

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 (See Profile) Up vote any posts that you find helpful, it shows what's working..