From 4f2d078b25cde8fd6ca32d7e38d566f0ee58d28d Mon Sep 17 00:00:00 2001 From: vivek-shankar Date: Sun, 29 Jan 2017 21:51:09 -0500 Subject: [PATCH] test of xbee time --- src/CommunicationManager.cpp | 67 ++++++++++++++++++++---------------- 1 file changed, 38 insertions(+), 29 deletions(-) diff --git a/src/CommunicationManager.cpp b/src/CommunicationManager.cpp index b758938..ff801df 100644 --- a/src/CommunicationManager.cpp +++ b/src/CommunicationManager.cpp @@ -170,10 +170,28 @@ void CommunicationManager::Run_In_Swarm_Mode() ros::Rate loop_rate(LOOP_RATE); counter=0; + test_1=0; while (ros::ok()) { + + test_1++; + if(test_1==100){ + char temporary_buffer[sizeof(uint64_t) * 4]; + std::string frame; + uint64_t constant_msg[3]; + constant_msg[0]=245253253253532; + constant_msg[1]=245253253253532; + constant_msg[2]=245253253253532; + constant_msg[3]=(uint64_t) device_id; + gettimeofday(&t1, NULL); + /*Copy the data to char buff*/ + memcpy((void*)temporary_buffer,(void*)constant_msg,sizeof(uint64_t) * 4); + Generate_Transmit_Request_Frame(temporary_buffer, &frame,sizeof(uint64_t) * 4); + serial_device_.Send_Frame(frame); + test_1 = 0; + } Check_In_Messages_and_Transfer_To_Topics(); - Send_multi_msg(); +// Send_multi_msg(); ros::spinOnce(); loop_rate.sleep(); } @@ -396,9 +414,23 @@ inline void CommunicationManager::Check_In_Messages_and_Transfer_To_Topics() /*Copy the header*/ memcpy(¤t_int64,in_message->c_str(),sizeof(uint64_t)); tot+=sizeof(uint64_t); - /*sscanf(in_message->c_str(), "%" PRIu64 " ", - ¤t_int64);*/ - //std::cout<c_str()+24,sizeof(uint64_t)); + if(current_int64==(uint64_t)device_id){ + gettimeofday(&t2, NULL); + double time_spent = (t2.tv_sec - t1.tv_sec) * 1000.0; //(double)(end - begin) / CLOCKS_PER_SEC; + time_spent += (t2.tv_usec - t1.tv_usec) / 1000.0; + std::cout<<"time taken to send and receive : "<c_str(), &frame,in_message->size()); + serial_device_.Send_Frame(frame); + } + + } + else{ header = u64_cvt_u16(current_int64); //std::cout << "Received header" <first << "Size of current map" <second->size()<< std::endl; - //std::cout << "received Frame:"<<(void *) it->second->c_str() << std::endl; - //std::cout<<"Size of map : "<< multi_msgs.size()<< std::endl; - /* for (std::size_t j = 1; j < it->second->size()-1; j++) - { - - - if (' ' == it->second->at(j) || 0 == j) - {*/ - //current_int64=0 - //sscanf(it->second->c_str() + j, "%" PRIu64 " ", - // ¤t_int64); - /*Copy obt msg*/ - //memcpy(current_int64, it->second->c_str()+tot, tmp_size*sizeof(uint64_t)); - //std::cout << "received Frame:" << current_int64 << std::endl; - //if(previous_int64 != current_int64){ - //mavlink_msg.payload64.push_back(current_int64); - //previous_int64=current_int64; - //} - /* } - - } */ } std::cout << "one multi message published in topic with size :" <