Hello all, I want to monitor 2 variables: 'gActiveTask', which has external linkage (meaning: a module uses it by specifying "external"), and another which isn't static (called 'sCounter'). When I add these 2 to the logic analyzer (of UV3) I see updates for the value of 'gActiveTask' but 'sCounter' remains on 0 (even though I see it change in the watch view). What is happening here? Kind regards, Tamir Michael
Hi, Well, sCounter is defined in the scope of the source file: int32s sCounter1 = 1 ; and int32s is defined as typedef long int32s ; that is all! thanks, Tamir