Chris Hatfield / Mbed 2 deprecated WatchAndTrace

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RemoteFunc.cpp Source File

RemoteFunc.cpp

00001 #include "Config.h"
00002 
00003 long RemoteFunction(const long Arg)
00004 {
00005   TRACE("Remote Function Arg %6ld\n\r", Arg);
00006   long lReturn(Arg ^ 0x55AAAA & 0xFFFFFF);
00007   WATCH("Remote Funtion Return   %8ld", lReturn);
00008   return lReturn;
00009 }