I do search all the source code for LiteOS but not able to find the string location.
Can someone share where is this line exactly so that I can confirm my porting is done, thanks.
Since this is a while loop without exit condition, so probably the log used to check porting successfully should be modified accordingly.
void LOS_Inspect_TskDeal(void)
{
......
/* output a message on hyperterminal using printf function */
dprintf("\r\nLos Key example: please press the UserKey key \r\n");
while(1)
{
LOS_Inspect_KeyAndLed(USER_KEY,LOS_LED1);
}
......
}
I do search all the source code for LiteOS but not able to find the string location.
Can someone share where is this line exactly so that I can confirm my porting is done, thanks.
Since this is a while loop without exit condition, so probably the log used to check porting successfully should be modified accordingly.