I'm learning how to use xScope, and have a question regarding real time probes and ports. Is it possible to monitor a port directly with xScope while the application is running? For example, we have several ports that we monitor while testing with an oscilloscope directly on the board, and it'd be nice to have that showing in xScope instead.
I've tried reading through the xTimeComposer User Guide section on xScope, and from what I can tell I'm not able to monitor a port directly with xScope; instead, I can monitor the output from the port when we pull that data in, for example:
Code: Select all
int sample;
port myPort;
myPort :> sample;
xscope_uint (0, sample );
Is there a way to do something like this instead:
Code: Select all
port myPort;
xscope_port(0, myPort);
so that the port is directly being monitored in realtime?