Forum Discussion
MEIYAN_L_Intel
Frequent Contributor
6 years agoHi,
As you have mentioned "I've no results", can you explain more on this?
After you generate the .jic file, may I know what the steps have you done after?
Thanks
Chloé_Russell
New Contributor
6 years agoHi,
Thank you for responding me.
After loading my JIC file on board, I’ve expected simple message display in terminal, I wrote a simple code to test my UART receive and transmit functions with printf() and scanf() as you can see it here below:
#include <stdio.h>
int main()
{ char str[50]= "Hello !!\n";
printf("Initial = %s \n",str);
printf("Enter your character = \n");
scanf("%s",str);
printf("str = %s",str);
return 0;
}
The same test has correctly running on my system NIOSII with Jtag debug module using JIC file.
Regards