Board: EVK-MIMXRT595
SDK Version: 2.15.0
MCUXpresso IDE Version: 11.9.0
I am using the above-mentioned setup and building the freertos Hello World example. I made sure that the RT595 board was connected to my laptop.
<code>
int main(void) {
/* Init board hardware. */
BOARD_InitBootPins();
BOARD_InitBootClocks();
BOARD_InitBootPeripherals();
#ifndef BOARD_INIT_DEBUG_CONSOLE_PERIPHERAL
/* Init FSL debug console. */
BOARD_InitDebugConsole();
#endif
PRINTF("Hello World\r\n");
/* Force the counter to be placed into memory. */
volatile static int i = 0 ;
/* Enter an infinite loop, just incrementing a counter. */
while(1) {
i++ ;
/* 'Dummy' NOP to allow source level single stepping of
tight while() loop */
__asm volatile ("nop");
}
return 0 ;
}
</code>
I ran the application with the Debug option. The main function was invoked but I cannot see the PRINTF message anywhere on the screen.
I suspected that a new terminal/console window would pop up and view this PRINTF message. Can somebody help me here and let me know the right way to run this application?