2021-08-18 08:52 PM
There are ? mark on source file.
and when mouse placed there, they say "bad character sequence encounter : \" .
How can i clear ? mark and error message?
(MCU type is STM32F427)
2021-08-19 12:18 AM
Both statements are macros that are likely to cause this problem.
Please check whether you can access their definitions, e.g. with F3. The macros should be located in stm32f4xx_hal_rcc.h or stm32f4xx_hal_pwr_ex.h.
Regards
/Peter
2021-08-19 12:47 AM
Thank you for your reply.
um...
I can access those 2 lines macro with F3 key.
By the way,
'?' are cleared by changing following option.
preference >> general >> editors >> text editors >> Annotations
Vertical Ruler ---> unchecked
Overview Ruler ---> unchecked.
thank you again.
Best regards.
2021-08-19 01:00 AM
Interesting because it's just the text editor whose options you changed there.
With which annotation type did you switch that: Bookmark, Breakpoints, ... Warnings?
Regards
/Peter
2021-08-19 06:35 PM
Hi, Peter.
When I press F2 key , a message window appears with a ICON;
If click the icon, the Annotation window is displayed.
I have lifted the check points mentioned yesterday there.
I don't understand what you meant by Breakpoint and Bookmark you mentioned. However, as shown in the attached picture, the message 'Add a breakpoint' was displayed.
Please refer to the 3 picture below.
Regards.
2021-08-20 12:43 AM
I meant exactly this menu Annotations, to which you indicated the path. It is also reachable from the Eclipse main screen by
Window > Preferences > General > Editors > Text Editors > Annotations
However, you forgot to mention the Annotation Type, where you changed some settings, which can also be seen on your screenshot: C/C++ Index Markers.
Anyway, this setting was most likely not the cause of the question marks, but rather the lack of or incomplete indexing.
Regards
/Peter