//mpMain.c////This contains mpUsrRoot which is the entry point for your MotoPlus application
//ADDITIONAL INCLUDE FILES //(Note that motoPlus.h should be included in every source file)#include "motoPlus.h"
void mpUsrRoot(int arg1, int arg2, int arg3, int arg4, int arg5, int arg6, int arg7, int arg8, int arg9, int arg10){
unsigned int run_cnt; run_cnt = 0; while (1) {
mpTaskDelay(2500); printf("mpUsrRoot task Runing![%d]n",run_cnt); run_cnt++; } mpExitUsrRoot; }
/ for GLOBAL DATA DEFINITIONSSEM_ID semid;
// for IMPORT API & FUNCTIONSextern void moto_plus0_task(void);
// for L



