fac13 about 2 hours ago
I realized I should have added a wait after the initialization, like this: -
void preHwInit()
{
MY_DEBUGDEVICE.begin(115200);
while(!MY_DEBUGDEVICE){};
}
With that included, my sketch works without needing the architecture code mod.
Putting the same code in before() doesn't work.
Thanks for your help.