Hallo!
I was trying to display some variables on the Debug virtual console. Unfortunately i can't get it done. I wrote a very easy software that use printf() to write "hallo world" but i am not getting anything.
-e2 studio 6.2.1
-DK-s124
-Win10
my hal_entry.c: //only basic drivers
------------------------------------------------------------
/* HAL-only entry function */
#include "hal_data.h"
#include <stdio.h>
extern void initialise_monitor_handles(void);
void hal_entry(void)
{
initialise_monitor_handles();
while(1)
{
printf("Hello World");
}
}
------------------------------------------------------------
Any other setting is missing?
Kindly help as soon as possible.