Compare commits
No commits in common. "e479fec3eb2cdc9017f90d2567381a4a44245d09" and "e912211b00b13168e1fd87fa3dee9c46204105c0" have entirely different histories.
e479fec3eb
...
e912211b00
1 changed files with 55 additions and 60 deletions
|
@ -368,16 +368,15 @@ void Tasks::ReceiveFromMonTask(void *arg) {
|
|||
|
||||
cout << "Start " << __PRETTY_FUNCTION__ << endl << flush;
|
||||
|
||||
while(1){
|
||||
// Synchronization barrier (waiting that all tasks are starting)
|
||||
rt_sem_p(&sem_barrier, TM_INFINITE);
|
||||
|
||||
while(1){
|
||||
//rt_sem_p(&sem_restart,TM_INFINITE);
|
||||
|
||||
//Reinitialize control boolean
|
||||
killReceiveFromMonOk = 0;
|
||||
rt_mutex_acquire(&mutex_killReceiveFromMon, TM_INFINITE);
|
||||
killReceiveFromMon = 0;
|
||||
killReceiveFromMon=0;
|
||||
rt_mutex_release(&mutex_killReceiveFromMon);
|
||||
|
||||
/**************************************************************************************/
|
||||
|
@ -391,6 +390,7 @@ void Tasks::ReceiveFromMonTask(void *arg) {
|
|||
cout << "Rcv <= " << msgRcv->ToString() << endl << flush;
|
||||
|
||||
if (msgRcv->CompareID(MESSAGE_MONITOR_LOST)) {
|
||||
delete(msgRcv);
|
||||
cout << "Connection to monitor lost" << endl;
|
||||
|
||||
rt_mutex_acquire(&mutex_killReceiveFromMon, TM_INFINITE);
|
||||
|
@ -419,19 +419,16 @@ void Tasks::ReceiveFromMonTask(void *arg) {
|
|||
acquireImage=0;
|
||||
rt_mutex_release(&mutex_acquireImage);
|
||||
|
||||
//Wait every task to die
|
||||
sleep(1);
|
||||
|
||||
//All closes
|
||||
monitor.Close();
|
||||
robot.Close();
|
||||
|
||||
//Tasks::Join();
|
||||
|
||||
//Release restarted tasks
|
||||
// cout << "End sleep" << endl << flush;
|
||||
cout << "End sleep" << endl << flush;
|
||||
rt_sem_broadcast(&sem_barrier);
|
||||
// cout << "Mes couilles" << endl << flush;
|
||||
cout << "Mes couilles" << endl << flush;
|
||||
|
||||
//exit(-1);
|
||||
|
||||
|
@ -521,9 +518,13 @@ void Tasks::ReceiveFromMonTask(void *arg) {
|
|||
|
||||
//Update loop condition
|
||||
|
||||
cout << "J'arrive la" << endl << flush;
|
||||
|
||||
rt_mutex_acquire(&mutex_killReceiveFromMon, TM_INFINITE);
|
||||
killReceiveFromMonOk = killReceiveFromMon;
|
||||
rt_mutex_release(&mutex_killReceiveFromMon);
|
||||
|
||||
cout << "Kill Receive From Mon Ok = " << killReceiveFromMonOk << endl << flush;
|
||||
}
|
||||
|
||||
cout << "ReceiveFromMon dies" << endl << flush;
|
||||
|
@ -642,6 +643,8 @@ void Tasks::StartRobotTaskWithWatchdog(void *arg) {
|
|||
|
||||
while(1){
|
||||
|
||||
rt_sem_p(&sem_restart, TM_INFINITE);
|
||||
|
||||
rt_sem_p(&sem_startRobotWithWatchdog, TM_INFINITE);
|
||||
cout << "Start robot with watchdog (";
|
||||
rt_mutex_acquire(&mutex_robot, TM_INFINITE);
|
||||
|
@ -731,21 +734,16 @@ void Tasks::DetectLostSupRob(void *arg){
|
|||
bool kill_detectLostSupRobOk=0;
|
||||
Message* msgSend;
|
||||
|
||||
//Period = 1s
|
||||
rt_task_set_periodic(NULL, TM_NOW, 1000000000);
|
||||
|
||||
while(1){
|
||||
|
||||
//Wait the Communication with the Robot to be Set
|
||||
rt_sem_p(&sem_detectLostSupRob, TM_INFINITE);
|
||||
cout << "Start DetectLostSupRob" << endl << flush;
|
||||
|
||||
kill_detectLostSupRobOk = 0;
|
||||
//Initialize the variable for the loop condition
|
||||
rt_mutex_acquire(&mutex_killDetectLostSupRob, TM_INFINITE);
|
||||
killDetectLostSupRob = 0;
|
||||
killDetectLostSupRob=0;
|
||||
rt_mutex_release(&mutex_killDetectLostSupRob);
|
||||
|
||||
//Period = 1s
|
||||
rt_task_set_periodic(NULL, TM_NOW, 1000000000);
|
||||
|
||||
while(!kill_detectLostSupRobOk){
|
||||
rt_task_wait_period(NULL);
|
||||
|
@ -754,8 +752,6 @@ void Tasks::DetectLostSupRob(void *arg){
|
|||
rt_mutex_acquire(&mutex_robot, TM_INFINITE);
|
||||
msgSend = robot.Write(robot.Ping());
|
||||
rt_mutex_release(&mutex_robot);
|
||||
cout << "J'écris un message" << endl << flush;
|
||||
|
||||
|
||||
if(msgSend->GetID() == MESSAGE_ANSWER_COM_ERROR || msgSend->GetID() == MESSAGE_ANSWER_ROBOT_TIMEOUT){
|
||||
|
||||
|
@ -785,7 +781,6 @@ void Tasks::DetectLostSupRob(void *arg){
|
|||
rt_mutex_release(&mutex_killDetectLostSupRob);
|
||||
}
|
||||
cout << "DetectLostSupRob dies";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue