Dear all,
We are about to make a nesc program testing application. The application
will insert some functions into the source code so that the running
environment can be recorded. Something like:
source:
While (i)
{
...
i++;
}
inserted:
while(i)
{
record(i) //inserted code
...
i++
}
The problem comes that current record() is written by c. And when I try to
compile the inserted code, and error of implicit declaration occurred. I am
wondering if there is any way I can make my function recognized by the
compiler, just like those familiar functions such as memcpy or printf, which
can be recognized by nesc compiler?
--
Best wishes,
Kenneth Chan
------------------------
Wish you have a good day!
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help