This commit is contained in:
pyhs 2017-09-05 15:40:28 -04:00
commit 2e2681323f
1 changed files with 6 additions and 6 deletions

View File

@ -269,12 +269,12 @@ void roscontroller::RosControllerRun()
/*Retrive the state of the graph and uav and log TODO WARNING :PLEASE REMOVE IF /*Retrive the state of the graph and uav and log TODO WARNING :PLEASE REMOVE IF
SCRIPT IS NOT graphform.bzz*/ SCRIPT IS NOT graphform.bzz*/
static buzzvm_t VM = buzz_utility::get_vm(); static buzzvm_t VM = buzz_utility::get_vm();
buzzvm_pushs(VM, buzzvm_string_register(VM, "m_eState",1)); std::stringstream state_buff;
buzzvm_gload(VM); //buzzvm_pushs(VM, buzzvm_string_register(VM, "m_eState",1));
buzzobj_t graph_state = buzzvm_stack_at(VM, 1); // buzzvm_gload(VM);
buzzvm_pop(VM); // buzzobj_t graph_state = buzzvm_stack_at(VM, 1);
std::stringstream state_buff; // buzzvm_pop(VM);
state_buff<< graph_state->s.value.str<<","; // state_buff<< graph_state->s.value.str<<",";
buzzvm_pushs(VM, buzzvm_string_register(VM, "UAVSTATE",1)); buzzvm_pushs(VM, buzzvm_string_register(VM, "UAVSTATE",1));
buzzvm_gload(VM); buzzvm_gload(VM);
buzzobj_t uav_state = buzzvm_stack_at(VM, 1); buzzobj_t uav_state = buzzvm_stack_at(VM, 1);