This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

QT + QBS + Bare-Metal, debug information

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?

Related