Bonjour à tous !
Je réalise un stage de fin d'étude en entreprise et je ne comprend pas quelque chose .
Je tente d'ouvrir un port : le port 23 qui est le port Telnet afin de pouvoir agir sur ma carte électronique.
Voici l'erreur affiché : L2300 (E) Duplicate symbol "_MainTask" in "V:\Users\stagiaires\manuel\Te st\Start\Start_RX62N\Release\O S_IP_Shell.obj"
Voici la partie du code OS_IP_Shell.c
Je ne comprend pas cette erreur d'ou viens elle ?Code:/********************************************************************* * * MainTask */ void MainTask(void); void MainTask(void) { IP_Init(); OS_SetPriority(OS_GetTaskID(), 255); // This task has highest prio for real-time application OS_CREATETASK(&_TCB , "IP_Task" , IP_Task , 150, _Stack); // Start the IP task #if USE_RX_TASK OS_CREATETASK(&_IPRxTCB , "IP_RxTask", IP_RxTask , 140, _IPRxStack); // Start the IP_RxTask, optional. #endif OS_CREATETASK(&_TCBShell, "Shell" , IP_ShellServer, 100, _StackShell); // Start the shell server while (IP_IFaceIsReady() == 0) { OS_Delay(50); } while (1) { BSP_ToggleLED(1); OS_Delay (200); } }
Je vous remercie d'avance
-----