Macro Expansion tooltip of TICKS_PER_SECOND is wrong

Topics for the Eclipse Environment
Post Reply
markadamdonkers
Posts: 8
Joined: Sat Sep 26, 2009 11:57 am

Macro Expansion tooltip of TICKS_PER_SECOND is wrong

Post by markadamdonkers »

I redefined the TICKS_PER_SECOND macro in the ucos.h header file from 20 to 200, but the Macro Expansion tooltip in the Eclipse IDE still shows it as 20.

I verified that it was changed by looking at the disassembly. I tried rebuilding all system files, but it still remains as 20 in the tooltips. Is there a way I can flush out the old information?

Code: Select all

OSTimeDly(TICKS_PER_SECOND);
// NOTE 0xC8 = 200
20012be:	4878 00c8      	pea c8 <FLT_MAX_EXP+0x47>
20012c2:	4eb9 0200 e0e4 	jsr 200e0e4 <OSTimeDly>
Mark
User avatar
tod
Posts: 587
Joined: Sat Apr 26, 2008 8:27 am
Location: Southern California
Contact:

Re: Macro Expansion tooltip of TICKS_PER_SECOND is wrong

Post by tod »

In my release (rel24_rc1_beta01 ) the #define for TICKS_PER_SECOND is in constants.h, when I change it the tool tips don't update until I rebuild the index (see the attached image)
Attachments
RebuildIndex.png
RebuildIndex.png (78.88 KiB) Viewed 2676 times
Post Reply