Explains how to send a string over the stdout to the CARME UART0.
#include <stdio.h>
#include <stm32f4xx.h>
int main(void) {
printf("\033c");
printf("\033[2J");
printf("\033[?25l");
printf("The quick brown fox\r\n");
printf("jumps over the lazy dog\r\n");
for (;;) {
}
return 0;
}