Hi. Below are 2 functions:
byte self_test(void)
{
...
...
testing();
}
byte testing(void)
{
...
...
self_test();
}
From the testing function, I'm able to jump to the self_test function since the self_test function is declared above the testing function. However, I'm unable to jump to the testing function if I'm in the self_test function because the testing function is declared below the self_test function. Anyone knows a way to jump between these 2 functions continuously? Thx 