I'm using QT + QBS + bare-metal + gdb + openocd + stlink(debugger). I want to print into qt-terminal debug information. How Can I do this feature?
forexample:
int main()
{
printf("Hello World!"); // On this string application must to output "Hello World" into the terminal.
}
Added to project "consoleApplication: true" - this is equal CONFIG += console, but its does not help.
Can anyone help?