Display problem in the IDE with #if and #ifdef
Hello, I am working on a project with a dual core processor (H7) and I have some display problems in my IDE (STM32CubeIDE v1.9.0). For example, I added the LWIP part to my board with #define LWIP_IPV4 1 and #define LWIP_DHCP 1.
When I am in debug mode, I can see that I pass in the code present in dhcp.c (starting with #if LWIP_IPV4 && LWIP_DHCP) but the code is totally greyed out as if LWIP_IPV4 and LWIP_DHCP were 0.
This is an example, I can observe this phenomenon elsewhere in my project.
Does anyone have a solution?