We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi, I have several functions called in T0 isr. The outline of call tree like this:
void T0_isr() interrupt 1 { getkey(); } void getkey() { char c; c = filterGetKeyCode(); } char filterGetKeyCode() { char c; c = getKeyCode(); return c; } char getKeyCode() { char c; char cd; // c be assigned somehow cd = encodeFlex(c); c = decode(cd); return c; } char encodeFlex(char c) { return encode(c); } char encode(char); char decode(char);
"The map file shows you the call tree for the program (one level at a time, at any rate)." The uVision Code Browser shows you the full call tree. It can also show its converse - the Caller Tree. So, just take a look at the Caller Tree (or "Caller Graph") for those functions...
Ok, I'll check the map to make sure that the rest of my program did not call those routines mentioned above. d.curie
"Ok, I'll check the map..." I think you'll find the Browser easier!