This applies for the arm9 template and many examples.
I checked the recent changes and saw the call to setvbuf was removed for stdout.
Readding the line (inside main.c of my project) makes printing work again.
Code: Select all
#include <nds.h>
#include <stdio.h>
int main(void)
{
consoleDemoInit();
// Uncomment this line to make printing work again:
//setvbuf(stdout, NULL , _IONBF, 0);
iprintf("Hello World!");
while(1) {
swiWaitForVBlank();
}
}