HI,
i am new in RLP, and have few question / problems:
-
I want to exit for C code. i am using “return” in the called function but it doesnt work all the times. i tried this:
// C code (RLP)
static int counter = 0;
while (counter < 50)
{
//do some work.
counter++;
}
i saw this code not always returns to C# code.
any idea? -
i want to debug my C code. what is the best way to do this? LCD screen? do you know better way?