Ready for final test :feelsgood: -- SOLO
This commit is contained in:
parent
12ca11b275
commit
5f4aaeb1e0
|
@ -11,9 +11,9 @@
|
||||||
#include "mavros_msgs/State.h"
|
#include "mavros_msgs/State.h"
|
||||||
#include "mavros_msgs/BatteryStatus.h"
|
#include "mavros_msgs/BatteryStatus.h"
|
||||||
#include "mavros_msgs/Mavlink.h"
|
#include "mavros_msgs/Mavlink.h"
|
||||||
|
#include "sensor_msgs/NavSatStatus.h"
|
||||||
#include "mavros_msgs/WaypointPush.h"
|
#include "mavros_msgs/WaypointPush.h"
|
||||||
#include "mavros_msgs/Waypoint.h"
|
#include "mavros_msgs/Waypoint.h"
|
||||||
#include "sensor_msgs/NavSatStatus.h"
|
|
||||||
#include <sensor_msgs/LaserScan.h>
|
#include <sensor_msgs/LaserScan.h>
|
||||||
#include <rosbuzz/neigh_pos.h>
|
#include <rosbuzz/neigh_pos.h>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -153,16 +153,15 @@ private:
|
||||||
|
|
||||||
void Arm();
|
void Arm();
|
||||||
|
|
||||||
|
void SetMode();
|
||||||
|
|
||||||
void SetMode(std::string mode, int delay_miliseconds);
|
void SetMode(std::string mode, int delay_miliseconds);
|
||||||
|
|
||||||
void SetModeAsync(std::string mode, int delay_miliseconds);
|
|
||||||
|
|
||||||
//void SetModeAsync(std::string mode, int delay);
|
|
||||||
|
|
||||||
void Subscribe(ros::NodeHandle n_c);
|
void Subscribe(ros::NodeHandle n_c);
|
||||||
|
|
||||||
void WaypointMissionSetup(float lat, float lng, float alg);
|
void WaypointMissionSetup(float lat, float lng, float alt);
|
||||||
|
|
||||||
|
void fc_command_setup();
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,12 +26,11 @@
|
||||||
<param name="Xbee_Out_To_Buzz" type="str" value="inMavlink" />
|
<param name="Xbee_Out_To_Buzz" type="str" value="inMavlink" />
|
||||||
<param name="Xbee_In_From_Controller" type="str" value="xbee_cmd" />
|
<param name="Xbee_In_From_Controller" type="str" value="xbee_cmd" />
|
||||||
<param name="No_of_dev" type="int" value="3" />
|
<param name="No_of_dev" type="int" value="3" />
|
||||||
<param name="Xbee_Out_To_Controller" type="str" value="mav_dji_cmd" />
|
|
||||||
|
|
||||||
<!-- run rosbuzz -->
|
<!-- run rosbuzz -->
|
||||||
<node name="rosbuzz_node" pkg="rosbuzz" type="rosbuzz_node" respawn="false" output="screen" >
|
<node name="rosbuzz_node" pkg="rosbuzz" type="rosbuzz_node" respawn="false" output="screen" >
|
||||||
<rosparam file="/home/pi/ros_catkin_ws/src/ROSBuzz/launch/launch_config/solo.yaml"/>
|
<rosparam file="/home/pi/ros_catkin_ws/src/ROSBuzz/launch/launch_config/solo.yaml"/>
|
||||||
<param name="bzzfile_name" value="/home/pi/ros_catkin_ws/src/ROSBuzz/src/testalone.bzz" />
|
<param name="bzzfile_name" value="/home/pi/ros_catkin_ws/src/ROSBuzz/src/testflockfev.bzz" />
|
||||||
<param name="rcclient" value="true" />
|
<param name="rcclient" value="true" />
|
||||||
<param name="rcservice_name" value="/buzzcmd" />
|
<param name="rcservice_name" value="/buzzcmd" />
|
||||||
<param name="in_payload" value="/inMavlink"/>
|
<param name="in_payload" value="/inMavlink"/>
|
||||||
|
|
|
@ -8,69 +8,72 @@
|
||||||
|
|
||||||
#include <buzz_utility.h>
|
#include <buzz_utility.h>
|
||||||
|
|
||||||
namespace buzz_utility {
|
namespace buzz_utility{
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
|
||||||
static buzzvm_t VM = 0;
|
static buzzvm_t VM = 0;
|
||||||
static char* BO_FNAME = 0;
|
static char* BO_FNAME = 0;
|
||||||
static uint8_t* BO_BUF = 0;
|
static uint8_t* BO_BUF = 0;
|
||||||
static buzzdebug_t DBG_INFO = 0;
|
static buzzdebug_t DBG_INFO = 0;
|
||||||
static uint8_t MSG_SIZE = 50; // Only 100 bytes of Buzz messages every step
|
static uint8_t MSG_SIZE = 50; // Only 100 bytes of Buzz messages every step
|
||||||
static int MAX_MSG_SIZE = 10000; // Maximum Msg size for sending update packets
|
static int MAX_MSG_SIZE = 10000; // Maximum Msg size for sending update packets
|
||||||
|
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*adds neighbours position*/
|
/*adds neighbours position*/
|
||||||
void neighbour_pos_callback(std::map<int, Pos_struct> neighbours_pos_map) {
|
void neighbour_pos_callback(std::map< int, Pos_struct> neighbours_pos_map){
|
||||||
/* Reset neighbor information */
|
/* Reset neighbor information */
|
||||||
buzzneighbors_reset(VM);
|
buzzneighbors_reset(VM);
|
||||||
/* Get robot id and update neighbor information */
|
/* Get robot id and update neighbor information */
|
||||||
map<int, Pos_struct>::iterator it;
|
map< int, Pos_struct >::iterator it;
|
||||||
for (it = neighbours_pos_map.begin(); it != neighbours_pos_map.end(); ++it) {
|
for (it=neighbours_pos_map.begin(); it!=neighbours_pos_map.end(); ++it){
|
||||||
buzzneighbors_add(VM, it->first, (it->second).x, (it->second).y,
|
buzzneighbors_add(VM,
|
||||||
|
it->first,
|
||||||
|
(it->second).x,
|
||||||
|
(it->second).y,
|
||||||
(it->second).z);
|
(it->second).z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/*Deserializes uint64_t into 4 uint16_t, freeing out is left to the user */
|
/*Deserializes uint64_t into 4 uint16_t, freeing out is left to the user */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
uint16_t* u64_cvt_u16(uint64_t u64) {
|
uint16_t* u64_cvt_u16(uint64_t u64){
|
||||||
uint16_t* out = new uint16_t[4];
|
uint16_t* out = new uint16_t[4];
|
||||||
uint32_t int32_1 = u64 & 0xFFFFFFFF;
|
uint32_t int32_1 = u64 & 0xFFFFFFFF;
|
||||||
uint32_t int32_2 = (u64 & 0xFFFFFFFF00000000) >> 32;
|
uint32_t int32_2 = (u64 & 0xFFFFFFFF00000000 ) >> 32;
|
||||||
out[0] = int32_1 & 0xFFFF;
|
out[0] = int32_1 & 0xFFFF;
|
||||||
out[1] = (int32_1 & (0xFFFF0000)) >> 16;
|
out[1] = (int32_1 & (0xFFFF0000) ) >> 16;
|
||||||
out[2] = int32_2 & 0xFFFF;
|
out[2] = int32_2 & 0xFFFF;
|
||||||
out[3] = (int32_2 & (0xFFFF0000)) >> 16;
|
out[3] = (int32_2 & (0xFFFF0000) ) >> 16;
|
||||||
//cout << " values " <<out[0] <<" "<<out[1] <<" "<<out[2] <<" "<<out[3] <<" ";
|
//cout << " values " <<out[0] <<" "<<out[1] <<" "<<out[2] <<" "<<out[3] <<" ";
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
/*Appends obtained messages to buzz in message Queue*/
|
/*Appends obtained messages to buzz in message Queue*/
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
|
|
||||||
/*******************************************************************************************************************/
|
/*******************************************************************************************************************/
|
||||||
/* Message format of payload (Each slot is uint64_t) */
|
/* Message format of payload (Each slot is uint64_t) */
|
||||||
/* _______________________________________________________________________________________________________________ */
|
/* _______________________________________________________________________________________________________________ */
|
||||||
/*| | |*/
|
/*| | |*/
|
||||||
/*|Size in Uint64_t(but size is Uint16_t)|robot_id|Update msg size|Update msg|Update msgs+Buzz_msgs with size.....|*/
|
/*|Size in Uint64_t(but size is Uint16_t)|robot_id|Update msg size|Update msg|Update msgs+Buzz_msgs with size.....|*/
|
||||||
/*|__________________________________________________________________________|____________________________________|*/
|
/*|__________________________________________________________________________|____________________________________|*/
|
||||||
/*******************************************************************************************************************/
|
/*******************************************************************************************************************/
|
||||||
|
|
||||||
void in_msg_process(uint64_t* payload) {
|
void in_msg_process(uint64_t* payload){
|
||||||
|
|
||||||
/* Go through messages and add them to the FIFO */
|
/* Go through messages and add them to the FIFO */
|
||||||
uint16_t* data = u64_cvt_u16((uint64_t) payload[0]);
|
uint16_t* data= u64_cvt_u16((uint64_t)payload[0]);
|
||||||
/*Size is at first 2 bytes*/
|
/*Size is at first 2 bytes*/
|
||||||
uint16_t size = data[0] * sizeof(uint64_t);
|
uint16_t size=data[0]*sizeof(uint64_t);
|
||||||
delete[] data;
|
delete[] data;
|
||||||
uint8_t* pl = (uint8_t*) malloc(size);
|
uint8_t* pl =(uint8_t*)malloc(size);
|
||||||
memset(pl, 0, size);
|
memset(pl, 0,size);
|
||||||
/* Copy packet into temporary buffer */
|
/* Copy packet into temporary buffer */
|
||||||
memcpy(pl, payload, size);
|
memcpy(pl, payload ,size);
|
||||||
/*size and robot id read*/
|
/*size and robot id read*/
|
||||||
size_t tot = sizeof(uint32_t);
|
size_t tot = sizeof(uint32_t);
|
||||||
/*for(int i=0;i<data[0];i++){
|
/*for(int i=0;i<data[0];i++){
|
||||||
|
@ -81,7 +84,7 @@ void in_msg_process(uint64_t* payload) {
|
||||||
}*/
|
}*/
|
||||||
/* Go through the messages until there's nothing else to read */
|
/* Go through the messages until there's nothing else to read */
|
||||||
//fprintf(stdout,"Total data size : utils : %d\n",(int)size);
|
//fprintf(stdout,"Total data size : utils : %d\n",(int)size);
|
||||||
uint16_t unMsgSize = 0;
|
uint16_t unMsgSize=0;
|
||||||
//uint8_t is_msg_pres=*(uint8_t*)(pl + tot);
|
//uint8_t is_msg_pres=*(uint8_t*)(pl + tot);
|
||||||
//tot+=sizeof(uint8_t);
|
//tot+=sizeof(uint8_t);
|
||||||
//fprintf(stdout,"is_updater msg present : %i\n",(int)is_msg_pres);
|
//fprintf(stdout,"is_updater msg present : %i\n",(int)is_msg_pres);
|
||||||
|
@ -102,31 +105,31 @@ void in_msg_process(uint64_t* payload) {
|
||||||
/*Obtain Buzz messages only when they are present*/
|
/*Obtain Buzz messages only when they are present*/
|
||||||
do {
|
do {
|
||||||
/* Get payload size */
|
/* Get payload size */
|
||||||
unMsgSize = *(uint16_t*) (pl + tot);
|
unMsgSize = *(uint16_t*)(pl + tot);
|
||||||
tot += sizeof(uint16_t);
|
tot += sizeof(uint16_t);
|
||||||
/* Append message to the Buzz input message queue */
|
/* Append message to the Buzz input message queue */
|
||||||
if (unMsgSize > 0 && unMsgSize <= size - tot) {
|
if(unMsgSize > 0 && unMsgSize <= size - tot ) {
|
||||||
buzzinmsg_queue_append(VM,
|
buzzinmsg_queue_append(VM,
|
||||||
buzzmsg_payload_frombuffer(pl + tot, unMsgSize));
|
buzzmsg_payload_frombuffer(pl +tot, unMsgSize));
|
||||||
tot += unMsgSize;
|
tot += unMsgSize;
|
||||||
}
|
}
|
||||||
} while (size - tot > sizeof(uint16_t) && unMsgSize > 0);
|
}while(size - tot > sizeof(uint16_t) && unMsgSize > 0);
|
||||||
delete[] pl;
|
delete[] pl;
|
||||||
/* Process messages */
|
/* Process messages */
|
||||||
buzzvm_process_inmsgs(VM);
|
buzzvm_process_inmsgs(VM);
|
||||||
}
|
}
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
/*Obtains messages from buzz out message Queue*/
|
/*Obtains messages from buzz out message Queue*/
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
|
|
||||||
uint64_t* out_msg_process() {
|
uint64_t* out_msg_process(){
|
||||||
buzzvm_process_outmsgs(VM);
|
buzzvm_process_outmsgs(VM);
|
||||||
uint8_t* buff_send = (uint8_t*) malloc(MAX_MSG_SIZE);
|
uint8_t* buff_send =(uint8_t*)malloc(MAX_MSG_SIZE);
|
||||||
memset(buff_send, 0, MAX_MSG_SIZE);
|
memset(buff_send, 0, MAX_MSG_SIZE);
|
||||||
/*Taking into consideration the sizes included at the end*/
|
/*Taking into consideration the sizes included at the end*/
|
||||||
ssize_t tot = sizeof(uint16_t);
|
ssize_t tot = sizeof(uint16_t);
|
||||||
/* Send robot id */
|
/* Send robot id */
|
||||||
*(uint16_t*) (buff_send + tot) = (uint16_t) VM->robot;
|
*(uint16_t*)(buff_send+tot) = (uint16_t) VM->robot;
|
||||||
tot += sizeof(uint16_t);
|
tot += sizeof(uint16_t);
|
||||||
//uint8_t updater_msg_pre = 0;
|
//uint8_t updater_msg_pre = 0;
|
||||||
//uint16_t updater_msgSize= 0;
|
//uint16_t updater_msgSize= 0;
|
||||||
|
@ -155,17 +158,70 @@ uint64_t* out_msg_process() {
|
||||||
/* Send messages from FIFO */
|
/* Send messages from FIFO */
|
||||||
do {
|
do {
|
||||||
/* Are there more messages? */
|
/* Are there more messages? */
|
||||||
if (buzzoutmsg_queue_isempty(VM))
|
if(buzzoutmsg_queue_isempty(VM)) break;
|
||||||
break;
|
|
||||||
/* Get first message */
|
/* Get first message */
|
||||||
buzzmsg_payload_t m = buzzoutmsg_queue_first(VM);
|
buzzmsg_payload_t m = buzzoutmsg_queue_first(VM);
|
||||||
/* Make sure the next message makes the data buffer with buzz messages to be less than 100 Bytes */
|
/* Make sure the next message makes the data buffer with buzz messages to be less than 100 Bytes */
|
||||||
if (tot + buzzmsg_payload_size(m) + sizeof(uint16_t) > MSG_SIZE) {
|
if(tot + buzzmsg_payload_size(m) + sizeof(uint16_t)
|
||||||
|
>
|
||||||
|
MSG_SIZE) {
|
||||||
buzzmsg_payload_destroy(&m);
|
buzzmsg_payload_destroy(&m);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
/* Add message length to data buffer */
|
||||||
|
*(uint16_t*)(buff_send + tot) = (uint16_t)buzzmsg_payload_size(m);
|
||||||
|
tot += sizeof(uint16_t);
|
||||||
|
|
||||||
|
/* Add payload to data buffer */
|
||||||
|
memcpy(buff_send + tot, m->data, buzzmsg_payload_size(m));
|
||||||
|
tot += buzzmsg_payload_size(m);
|
||||||
|
|
||||||
|
/* Get rid of message */
|
||||||
|
buzzoutmsg_queue_next(VM);
|
||||||
|
buzzmsg_payload_destroy(&m);
|
||||||
|
} while(1);
|
||||||
|
|
||||||
|
uint16_t total_size =(ceil((float)tot/(float)sizeof(uint64_t)));
|
||||||
|
*(uint16_t*)buff_send = (uint16_t) total_size;
|
||||||
|
|
||||||
|
uint64_t* payload_64 = new uint64_t[total_size];
|
||||||
|
|
||||||
|
memcpy((void*)payload_64, (void*)buff_send, total_size*sizeof(uint64_t));
|
||||||
|
delete[] buff_send;
|
||||||
|
/*for(int i=0;i<total_size;i++){
|
||||||
|
cout<<" payload from out msg "<<*(payload_64+i)<<endl;
|
||||||
|
}*/
|
||||||
|
/* Send message */
|
||||||
|
return payload_64;
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************/
|
||||||
|
/*Buzz script not able to load*/
|
||||||
|
/****************************************/
|
||||||
|
|
||||||
|
static const char* buzz_error_info() {
|
||||||
|
buzzdebug_entry_t dbg = *buzzdebug_info_get_fromoffset(DBG_INFO, &VM->pc);
|
||||||
|
char* msg;
|
||||||
|
if(dbg != NULL) {
|
||||||
|
asprintf(&msg,
|
||||||
|
"%s: execution terminated abnormally at %s:%" PRIu64 ":%" PRIu64 " : %s\n\n",
|
||||||
|
BO_FNAME,
|
||||||
|
dbg->fname,
|
||||||
|
dbg->line,
|
||||||
|
dbg->col,
|
||||||
|
VM->errormsg);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
asprintf(&msg,
|
||||||
|
"%s: execution terminated abnormally at bytecode offset %d: %s\n\n",
|
||||||
|
BO_FNAME,
|
||||||
|
VM->pc,
|
||||||
|
VM->errormsg);
|
||||||
|
}
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*Buzz hooks that can be used inside .bzz file*/
|
/*Buzz hooks that can be used inside .bzz file*/
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
@ -229,303 +285,192 @@ uint64_t* out_msg_process() {
|
||||||
buzzvm_gstore(VM);
|
buzzvm_gstore(VM);
|
||||||
return BUZZVM_STATE_READY;
|
return BUZZVM_STATE_READY;
|
||||||
}
|
}
|
||||||
=======
|
|
||||||
/* Add message length to data buffer */
|
|
||||||
*(uint16_t*) (buff_send + tot) = (uint16_t) buzzmsg_payload_size(m);
|
|
||||||
tot += sizeof(uint16_t);
|
|
||||||
|
|
||||||
/* Add payload to data buffer */
|
|
||||||
memcpy(buff_send + tot, m->data, buzzmsg_payload_size(m));
|
|
||||||
tot += buzzmsg_payload_size(m);
|
|
||||||
>>>>>>> 4ac9d89f7c5e82fe99a48f616c587efd01d50ddd
|
|
||||||
|
|
||||||
/* Get rid of message */
|
/****************************************/
|
||||||
buzzoutmsg_queue_next(VM);
|
/*Sets the .bzz and .bdbg file*/
|
||||||
buzzmsg_payload_destroy(&m);
|
/****************************************/
|
||||||
} while (1);
|
|
||||||
|
|
||||||
uint16_t total_size = (ceil((float) tot / (float) sizeof(uint64_t)));
|
int buzz_script_set(const char* bo_filename,
|
||||||
*(uint16_t*) buff_send = (uint16_t) total_size;
|
|
||||||
|
|
||||||
uint64_t* payload_64 = new uint64_t[total_size];
|
|
||||||
|
|
||||||
memcpy((void*) payload_64, (void*) buff_send, total_size * sizeof(uint64_t));
|
|
||||||
delete[] buff_send;
|
|
||||||
/*for(int i=0;i<total_size;i++){
|
|
||||||
cout<<" payload from out msg "<<*(payload_64+i)<<endl;
|
|
||||||
}*/
|
|
||||||
/* Send message */
|
|
||||||
return payload_64;
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************************************/
|
|
||||||
/*Buzz script not able to load*/
|
|
||||||
/****************************************/
|
|
||||||
|
|
||||||
static const char* buzz_error_info() {
|
|
||||||
buzzdebug_entry_t dbg = *buzzdebug_info_get_fromoffset(DBG_INFO, &VM->pc);
|
|
||||||
char* msg;
|
|
||||||
if (dbg != NULL) {
|
|
||||||
asprintf (&msg,
|
|
||||||
"%s: execution terminated abnormally at %s:%" PRIu64 ":%" PRIu64 " : %s\n\n",
|
|
||||||
BO_FNAME,
|
|
||||||
dbg->fname,
|
|
||||||
dbg->line,
|
|
||||||
dbg->col,
|
|
||||||
VM->errormsg);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
asprintf(&msg,
|
|
||||||
"%s: execution terminated abnormally at bytecode offset %d: %s\n\n",
|
|
||||||
BO_FNAME,
|
|
||||||
VM->pc,
|
|
||||||
VM->errormsg);
|
|
||||||
}
|
|
||||||
return msg;
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************************************/
|
|
||||||
/*Buzz hooks that can be used inside .bzz file*/
|
|
||||||
/****************************************/
|
|
||||||
|
|
||||||
static int buzz_register_hooks() {
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "print", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzros_print));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "log", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzros_print));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_moveto", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzuav_moveto));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_goto", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzuav_goto));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_takeoff", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzuav_takeoff));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_gohome", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzuav_gohome));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_land", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzuav_land));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
return BUZZVM_STATE_READY;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**************************************************/
|
|
||||||
/*Register dummy Buzz hooks for test during update*/
|
|
||||||
/**************************************************/
|
|
||||||
|
|
||||||
static int testing_buzz_register_hooks() {
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "print", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzros_print));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "log", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::buzzros_print));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_moveto", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::dummy_closure));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_goto", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::dummy_closure));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_takeoff", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::dummy_closure));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_gohome", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::dummy_closure));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "uav_land", 1));
|
|
||||||
buzzvm_pushcc(VM, buzzvm_function_register(VM, buzzuav_closures::dummy_closure));
|
|
||||||
buzzvm_gstore(VM);
|
|
||||||
return BUZZVM_STATE_READY;
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************************************/
|
|
||||||
/*Sets the .bzz and .bdbg file*/
|
|
||||||
/****************************************/
|
|
||||||
|
|
||||||
int buzz_script_set(const char* bo_filename,
|
|
||||||
const char* bdbg_filename, int robot_id) {
|
const char* bdbg_filename, int robot_id) {
|
||||||
//cout<<"bo file name"<<bo_filename;
|
//cout<<"bo file name"<<bo_filename;
|
||||||
/* Get hostname */
|
/* Get hostname */
|
||||||
char hstnm[30];
|
char hstnm[30];
|
||||||
//char* hstnm ="M1003";
|
//char* hstnm ="M1003";
|
||||||
gethostname(hstnm, 30);
|
gethostname(hstnm, 30);
|
||||||
/* Make numeric id from hostname */
|
/* Make numeric id from hostname */
|
||||||
/* NOTE: here we assume that the hostname is in the format Knn */
|
/* NOTE: here we assume that the hostname is in the format Knn */
|
||||||
int id = strtol(hstnm+4, NULL, 10);
|
int id = strtol(hstnm+4, NULL, 10);
|
||||||
cout << " Robot ID: " <<id<< endl;
|
cout << " Robot ID: " <<id<< endl;
|
||||||
/* Reset the Buzz VM */
|
/* Reset the Buzz VM */
|
||||||
if(VM) buzzvm_destroy(&VM);
|
if(VM) buzzvm_destroy(&VM);
|
||||||
VM = buzzvm_new((int)id);
|
VM = buzzvm_new((int)id);
|
||||||
/* Get rid of debug info */
|
/* Get rid of debug info */
|
||||||
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
||||||
DBG_INFO = buzzdebug_new();
|
DBG_INFO = buzzdebug_new();
|
||||||
/* Read bytecode and fill in data structure */
|
/* Read bytecode and fill in data structure */
|
||||||
FILE* fd = fopen(bo_filename, "rb");
|
FILE* fd = fopen(bo_filename, "rb");
|
||||||
if(!fd) {
|
if(!fd) {
|
||||||
perror(bo_filename);
|
perror(bo_filename);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
fseek(fd, 0, SEEK_END);
|
fseek(fd, 0, SEEK_END);
|
||||||
size_t bcode_size = ftell(fd);
|
size_t bcode_size = ftell(fd);
|
||||||
rewind(fd);
|
rewind(fd);
|
||||||
BO_BUF = (uint8_t*)malloc(bcode_size);
|
BO_BUF = (uint8_t*)malloc(bcode_size);
|
||||||
if(fread(BO_BUF, 1, bcode_size, fd) < bcode_size) {
|
if(fread(BO_BUF, 1, bcode_size, fd) < bcode_size) {
|
||||||
perror(bo_filename);
|
perror(bo_filename);
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
/* Read debug information */
|
/* Read debug information */
|
||||||
//if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
//if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
||||||
// buzzvm_destroy(&VM);
|
// buzzvm_destroy(&VM);
|
||||||
// buzzdebug_destroy(&DBG_INFO);
|
// buzzdebug_destroy(&DBG_INFO);
|
||||||
// perror(bdbg_filename);
|
// perror(bdbg_filename);
|
||||||
// return 0;
|
// return 0;
|
||||||
//}
|
//}
|
||||||
/* Set byte code */
|
/* Set byte code */
|
||||||
//if(buzzvm_set_bcode(VM, BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
//if(buzzvm_set_bcode(VM, BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
||||||
// buzzvm_destroy(&VM);
|
// buzzvm_destroy(&VM);
|
||||||
// buzzdebug_destroy(&DBG_INFO);
|
// buzzdebug_destroy(&DBG_INFO);
|
||||||
// fprintf(stdout, "%s: Error loading Buzz script\n\n", bo_filename);
|
// fprintf(stdout, "%s: Error loading Buzz script\n\n", bo_filename);
|
||||||
// return 0;
|
// return 0;
|
||||||
//}
|
//}
|
||||||
/* Register hook functions */
|
/* Register hook functions */
|
||||||
/*if(buzz_register_hooks() != BUZZVM_STATE_READY) {
|
/*if(buzz_register_hooks() != BUZZVM_STATE_READY) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fprintf(stdout, "%s: Error registering hooks\n\n", bo_filename);
|
fprintf(stdout, "%s: Error registering hooks\n\n", bo_filename);
|
||||||
return 0;
|
return 0;
|
||||||
}*/
|
}*/
|
||||||
/* Save bytecode file name */
|
/* Save bytecode file name */
|
||||||
//BO_FNAME = strdup(bo_filename);
|
//BO_FNAME = strdup(bo_filename);
|
||||||
/* Execute the global part of the script */
|
/* Execute the global part of the script */
|
||||||
//buzzvm_execute_script(VM);
|
//buzzvm_execute_script(VM);
|
||||||
/* Call the Init() function */
|
/* Call the Init() function */
|
||||||
//buzzvm_function_call(VM, "init", 0);
|
//buzzvm_function_call(VM, "init", 0);
|
||||||
/* All OK */
|
/* All OK */
|
||||||
return buzz_update_set(BO_BUF, bdbg_filename, bcode_size);
|
return buzz_update_set(BO_BUF, bdbg_filename, bcode_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*Sets a new update */
|
/*Sets a new update */
|
||||||
/****************************************/
|
/****************************************/
|
||||||
int buzz_update_set(uint8_t* UP_BO_BUF, const char* bdbg_filename,size_t bcode_size) {
|
int buzz_update_set(uint8_t* UP_BO_BUF, const char* bdbg_filename,size_t bcode_size){
|
||||||
/* Get hostname */
|
/* Get hostname */
|
||||||
char hstnm[30];
|
char hstnm[30];
|
||||||
gethostname(hstnm, 30);
|
gethostname(hstnm, 30);
|
||||||
/* Make numeric id from hostname */
|
/* Make numeric id from hostname */
|
||||||
/* NOTE: here we assume that the hostname is in the format Knn */
|
/* NOTE: here we assume that the hostname is in the format Knn */
|
||||||
int id = strtol(hstnm + 4, NULL, 10);
|
int id = strtol(hstnm + 4, NULL, 10);
|
||||||
|
|
||||||
/* Reset the Buzz VM */
|
/* Reset the Buzz VM */
|
||||||
if(VM) buzzvm_destroy(&VM);
|
if(VM) buzzvm_destroy(&VM);
|
||||||
VM = buzzvm_new(id);
|
VM = buzzvm_new(id);
|
||||||
/* Get rid of debug info */
|
/* Get rid of debug info */
|
||||||
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
||||||
DBG_INFO = buzzdebug_new();
|
DBG_INFO = buzzdebug_new();
|
||||||
|
|
||||||
/* Read debug information */
|
/* Read debug information */
|
||||||
if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
perror(bdbg_filename);
|
perror(bdbg_filename);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* Set byte code */
|
/* Set byte code */
|
||||||
if(buzzvm_set_bcode(VM, UP_BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
if(buzzvm_set_bcode(VM, UP_BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fprintf(stdout, "%s: Error loading Buzz script\n\n", BO_FNAME);
|
fprintf(stdout, "%s: Error loading Buzz script\n\n", BO_FNAME);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* Register hook functions */
|
/* Register hook functions */
|
||||||
if(buzz_register_hooks() != BUZZVM_STATE_READY) {
|
if(buzz_register_hooks() != BUZZVM_STATE_READY) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fprintf(stdout, "%s: Error registering hooks\n\n", BO_FNAME);
|
fprintf(stdout, "%s: Error registering hooks\n\n", BO_FNAME);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Execute the global part of the script */
|
/* Execute the global part of the script */
|
||||||
buzzvm_execute_script(VM);
|
buzzvm_execute_script(VM);
|
||||||
/* Call the Init() function */
|
/* Call the Init() function */
|
||||||
buzzvm_function_call(VM, "init", 0);
|
buzzvm_function_call(VM, "init", 0);
|
||||||
/* All OK */
|
/* All OK */
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*Performs a initialization test */
|
/*Performs a initialization test */
|
||||||
/****************************************/
|
/****************************************/
|
||||||
int buzz_update_init_test(uint8_t* UP_BO_BUF, const char* bdbg_filename,size_t bcode_size) {
|
int buzz_update_init_test(uint8_t* UP_BO_BUF, const char* bdbg_filename,size_t bcode_size){
|
||||||
/* Get hostname */
|
/* Get hostname */
|
||||||
char hstnm[30];
|
char hstnm[30];
|
||||||
gethostname(hstnm, 30);
|
gethostname(hstnm, 30);
|
||||||
/* Make numeric id from hostname */
|
/* Make numeric id from hostname */
|
||||||
/* NOTE: here we assume that the hostname is in the format Knn */
|
/* NOTE: here we assume that the hostname is in the format Knn */
|
||||||
int id = strtol(hstnm + 4, NULL, 10);
|
int id = strtol(hstnm + 4, NULL, 10);
|
||||||
/* Reset the Buzz VM */
|
/* Reset the Buzz VM */
|
||||||
if(VM) buzzvm_destroy(&VM);
|
if(VM) buzzvm_destroy(&VM);
|
||||||
VM = buzzvm_new(id);
|
VM = buzzvm_new(id);
|
||||||
/* Get rid of debug info */
|
/* Get rid of debug info */
|
||||||
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
if(DBG_INFO) buzzdebug_destroy(&DBG_INFO);
|
||||||
DBG_INFO = buzzdebug_new();
|
DBG_INFO = buzzdebug_new();
|
||||||
|
|
||||||
/* Read debug information */
|
/* Read debug information */
|
||||||
if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
if(!buzzdebug_fromfile(DBG_INFO, bdbg_filename)) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
perror(bdbg_filename);
|
perror(bdbg_filename);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* Set byte code */
|
/* Set byte code */
|
||||||
if(buzzvm_set_bcode(VM, UP_BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
if(buzzvm_set_bcode(VM, UP_BO_BUF, bcode_size) != BUZZVM_STATE_READY) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fprintf(stdout, "%s: Error loading Buzz script\n\n", BO_FNAME);
|
fprintf(stdout, "%s: Error loading Buzz script\n\n", BO_FNAME);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/* Register hook functions */
|
/* Register hook functions */
|
||||||
if(testing_buzz_register_hooks() != BUZZVM_STATE_READY) {
|
if(testing_buzz_register_hooks() != BUZZVM_STATE_READY) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
fprintf(stdout, "%s: Error registering hooks\n\n", BO_FNAME);
|
fprintf(stdout, "%s: Error registering hooks\n\n", BO_FNAME);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Execute the global part of the script */
|
/* Execute the global part of the script */
|
||||||
buzzvm_execute_script(VM);
|
buzzvm_execute_script(VM);
|
||||||
/* Call the Init() function */
|
/* Call the Init() function */
|
||||||
buzzvm_function_call(VM, "init", 0);
|
buzzvm_function_call(VM, "init", 0);
|
||||||
/* All OK */
|
/* All OK */
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*Swarm struct*/
|
/*Swarm struct*/
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
|
||||||
struct buzzswarm_elem_s {
|
struct buzzswarm_elem_s {
|
||||||
buzzdarray_t swarms;
|
buzzdarray_t swarms;
|
||||||
uint16_t age;
|
uint16_t age;
|
||||||
};
|
};
|
||||||
typedef struct buzzswarm_elem_s* buzzswarm_elem_t;
|
typedef struct buzzswarm_elem_s* buzzswarm_elem_t;
|
||||||
|
|
||||||
void check_swarm_members(const void* key, void* data, void* params) {
|
void check_swarm_members(const void* key, void* data, void* params) {
|
||||||
buzzswarm_elem_t e = *(buzzswarm_elem_t*)data;
|
buzzswarm_elem_t e = *(buzzswarm_elem_t*)data;
|
||||||
int* status = (int*)params;
|
int* status = (int*)params;
|
||||||
if(*status == 3) return;
|
if(*status == 3) return;
|
||||||
if(buzzdarray_size(e->swarms) != 1) {
|
if(buzzdarray_size(e->swarms) != 1) {
|
||||||
fprintf(stderr, "Swarm list size is not 1\n");
|
fprintf(stderr, "Swarm list size is not 1\n");
|
||||||
*status = 3;
|
*status = 3;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
int sid = 1;
|
int sid = 1;
|
||||||
if(*buzzdict_get(VM->swarms, &sid, uint8_t) &&
|
if(*buzzdict_get(VM->swarms, &sid, uint8_t) &&
|
||||||
buzzdarray_get(e->swarms, 0, uint16_t) != sid) {
|
buzzdarray_get(e->swarms, 0, uint16_t) != sid) {
|
||||||
|
@ -544,35 +489,35 @@ else {
|
||||||
*status = 3;
|
*status = 3;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*Step through the buzz script*/
|
/*Step through the buzz script*/
|
||||||
|
|
||||||
void buzz_script_step() {
|
void buzz_script_step() {
|
||||||
/*
|
/*
|
||||||
* Update sensors
|
* Update sensors
|
||||||
*/
|
*/
|
||||||
buzzuav_closures::buzzuav_update_battery(VM);
|
buzzuav_closures::buzzuav_update_battery(VM);
|
||||||
buzzuav_closures::buzzuav_update_prox(VM);
|
buzzuav_closures::buzzuav_update_prox(VM);
|
||||||
buzzuav_closures::buzzuav_update_currentpos(VM);
|
buzzuav_closures::buzzuav_update_currentpos(VM);
|
||||||
buzzuav_closures::buzzuav_update_flight_status(VM);
|
buzzuav_closures::buzzuav_update_flight_status(VM);
|
||||||
buzzuav_closures::buzzuav_update_obstacle(VM);
|
buzzuav_closures::buzzuav_update_obstacle(VM);
|
||||||
/*
|
/*
|
||||||
* Call Buzz step() function
|
* Call Buzz step() function
|
||||||
*/
|
*/
|
||||||
if(buzzvm_function_call(VM, "step", 0) != BUZZVM_STATE_READY) {
|
if(buzzvm_function_call(VM, "step", 0) != BUZZVM_STATE_READY) {
|
||||||
fprintf(stderr, "%s: execution terminated abnormally: %s\n\n",
|
fprintf(stderr, "%s: execution terminated abnormally: %s\n\n",
|
||||||
BO_FNAME,
|
BO_FNAME,
|
||||||
buzz_error_info());
|
buzz_error_info());
|
||||||
buzzvm_dump(VM);
|
buzzvm_dump(VM);
|
||||||
}
|
}
|
||||||
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
||||||
/* look into this currently we don't have swarm feature at all */
|
/* look into this currently we don't have swarm feature at all */
|
||||||
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
|
||||||
/*Print swarm*/
|
/*Print swarm*/
|
||||||
//buzzswarm_members_print(stdout, VM->swarmmembers, VM->robot);
|
//buzzswarm_members_print(stdout, VM->swarmmembers, VM->robot);
|
||||||
/* Check swarm state */
|
/* Check swarm state */
|
||||||
/* int status = 1;
|
/* int status = 1;
|
||||||
buzzdict_foreach(VM->swarmmembers, check_swarm_members, &status);
|
buzzdict_foreach(VM->swarmmembers, check_swarm_members, &status);
|
||||||
if(status == 1 &&
|
if(status == 1 &&
|
||||||
buzzdict_size(VM->swarmmembers) < 9)
|
buzzdict_size(VM->swarmmembers) < 9)
|
||||||
|
@ -580,14 +525,14 @@ if(buzzvm_function_call(VM, "step", 0) != BUZZVM_STATE_READY) {
|
||||||
buzzvm_pushs(VM, buzzvm_string_register(VM, "swarm_status", 1));
|
buzzvm_pushs(VM, buzzvm_string_register(VM, "swarm_status", 1));
|
||||||
buzzvm_pushi(VM, status);
|
buzzvm_pushi(VM, status);
|
||||||
buzzvm_gstore(VM);*/
|
buzzvm_gstore(VM);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/*Destroy the bvm and other resorces*/
|
/*Destroy the bvm and other resorces*/
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
|
||||||
void buzz_script_destroy() {
|
void buzz_script_destroy() {
|
||||||
if(VM) {
|
if(VM) {
|
||||||
if(VM->state != BUZZVM_STATE_READY) {
|
if(VM->state != BUZZVM_STATE_READY) {
|
||||||
fprintf(stderr, "%s: execution terminated abnormally: %s\n\n",
|
fprintf(stderr, "%s: execution terminated abnormally: %s\n\n",
|
||||||
BO_FNAME,
|
BO_FNAME,
|
||||||
|
@ -598,9 +543,10 @@ if(VM) {
|
||||||
buzzvm_destroy(&VM);
|
buzzvm_destroy(&VM);
|
||||||
free(BO_FNAME);
|
free(BO_FNAME);
|
||||||
buzzdebug_destroy(&DBG_INFO);
|
buzzdebug_destroy(&DBG_INFO);
|
||||||
|
}
|
||||||
|
fprintf(stdout, "Script execution stopped.\n");
|
||||||
}
|
}
|
||||||
fprintf(stdout, "Script execution stopped.\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************************************/
|
/****************************************/
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
@ -610,10 +556,10 @@ fprintf(stdout, "Script execution stopped.\n");
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
|
||||||
int buzz_script_done() {
|
int buzz_script_done() {
|
||||||
return VM->state != BUZZVM_STATE_READY;
|
return VM->state != BUZZVM_STATE_READY;
|
||||||
}
|
}
|
||||||
|
|
||||||
int update_step_test() {
|
int update_step_test(){
|
||||||
|
|
||||||
buzzuav_closures::buzzuav_update_battery(VM);
|
buzzuav_closures::buzzuav_update_battery(VM);
|
||||||
buzzuav_closures::buzzuav_update_prox(VM);
|
buzzuav_closures::buzzuav_update_prox(VM);
|
||||||
|
@ -622,27 +568,28 @@ int update_step_test() {
|
||||||
buzzuav_closures::buzzuav_update_obstacle(VM);
|
buzzuav_closures::buzzuav_update_obstacle(VM);
|
||||||
|
|
||||||
int a = buzzvm_function_call(VM, "step", 0);
|
int a = buzzvm_function_call(VM, "step", 0);
|
||||||
if(a != BUZZVM_STATE_READY) {
|
if(a != BUZZVM_STATE_READY){
|
||||||
fprintf(stdout, "step test VM state %i\n",a);
|
fprintf(stdout, "step test VM state %i\n",a);
|
||||||
fprintf(stdout, " execution terminated abnormally\n\n");
|
fprintf(stdout, " execution terminated abnormally\n\n");
|
||||||
}
|
}
|
||||||
return a == BUZZVM_STATE_READY;
|
return a == BUZZVM_STATE_READY;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t get_robotid() {
|
uint16_t get_robotid(){
|
||||||
/* Get hostname */
|
/* Get hostname */
|
||||||
char hstnm[30];
|
char hstnm[30];
|
||||||
gethostname(hstnm, 30);
|
gethostname(hstnm, 30);
|
||||||
/* Make numeric id from hostname */
|
/* Make numeric id from hostname */
|
||||||
/* NOTE: here we assume that the hostname is in the format Knn */
|
/* NOTE: here we assume that the hostname is in the format Knn */
|
||||||
int id = strtol(hstnm + 4, NULL, 10);
|
int id = strtol(hstnm + 4, NULL, 10);
|
||||||
//fprintf(stdout, "Robot id from get rid buzz util: %i\n",id);
|
//fprintf(stdout, "Robot id from get rid buzz util: %i\n",id);
|
||||||
return (uint16_t)id;
|
return (uint16_t)id;
|
||||||
}
|
}
|
||||||
|
|
||||||
buzzvm_t get_vm() {
|
buzzvm_t get_vm(){
|
||||||
return VM;
|
return VM;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#include "roscontroller.h"
|
#include "roscontroller.h"
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
|
|
||||||
namespace rosbzz_node{
|
namespace rosbzz_node{
|
||||||
|
|
||||||
/***Constructor***/
|
/***Constructor***/
|
||||||
|
@ -76,7 +77,6 @@ namespace rosbzz_node{
|
||||||
/*sleep for the mentioned loop rate*/
|
/*sleep for the mentioned loop rate*/
|
||||||
timer_step+=1;
|
timer_step+=1;
|
||||||
maintain_pos(timer_step);
|
maintain_pos(timer_step);
|
||||||
|
|
||||||
}
|
}
|
||||||
/* Destroy updater and Cleanup */
|
/* Destroy updater and Cleanup */
|
||||||
//update_routine(bcfname.c_str(), dbgfname.c_str(),1);
|
//update_routine(bcfname.c_str(), dbgfname.c_str(),1);
|
||||||
|
@ -162,11 +162,13 @@ namespace rosbzz_node{
|
||||||
neigh_pos_pub = n_c.advertise<rosbuzz::neigh_pos>("/neighbours_pos",1000);
|
neigh_pos_pub = n_c.advertise<rosbuzz::neigh_pos>("/neighbours_pos",1000);
|
||||||
/* Service Clients*/
|
/* Service Clients*/
|
||||||
arm_client = n_c.serviceClient<mavros_msgs::CommandBool>(armclient);
|
arm_client = n_c.serviceClient<mavros_msgs::CommandBool>(armclient);
|
||||||
mission_client = n_c.serviceClient<mavros_msgs::WaypointPush>("/mavros/mission/push");
|
|
||||||
mode_client = n_c.serviceClient<mavros_msgs::SetMode>(modeclient);
|
mode_client = n_c.serviceClient<mavros_msgs::SetMode>(modeclient);
|
||||||
mav_client = n_c.serviceClient<mavros_msgs::CommandLong>(fcclient_name);
|
mav_client = n_c.serviceClient<mavros_msgs::CommandLong>(fcclient_name);
|
||||||
|
mission_client = n_c.serviceClient<mavros_msgs::WaypointPush>("/mavros/mission/push");
|
||||||
|
|
||||||
|
|
||||||
multi_msg=true;
|
multi_msg=true;
|
||||||
|
armstate = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void roscontroller::Subscribe(ros::NodeHandle n_c){
|
void roscontroller::Subscribe(ros::NodeHandle n_c){
|
||||||
|
@ -226,6 +228,18 @@ namespace rosbzz_node{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void roscontroller::SetMode(){
|
||||||
|
mavros_msgs::SetMode set_mode_message;
|
||||||
|
set_mode_message.request.base_mode = 0;
|
||||||
|
set_mode_message.request.custom_mode = "GUIDED"; // shit!
|
||||||
|
if(mode_client.call(set_mode_message)) {
|
||||||
|
ROS_INFO("Set Mode Service call successful!");
|
||||||
|
} else {
|
||||||
|
ROS_INFO("Set Mode Service call failed!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void roscontroller::WaypointMissionSetup(float lat, float lng, float alt){
|
void roscontroller::WaypointMissionSetup(float lat, float lng, float alt){
|
||||||
mavros_msgs::WaypointPush srv;
|
mavros_msgs::WaypointPush srv;
|
||||||
mavros_msgs::Waypoint waypoint;
|
mavros_msgs::Waypoint waypoint;
|
||||||
|
@ -241,56 +255,29 @@ namespace rosbzz_node{
|
||||||
|
|
||||||
srv.request.waypoints.push_back(waypoint);
|
srv.request.waypoints.push_back(waypoint);
|
||||||
if(mission_client.call(srv)){
|
if(mission_client.call(srv)){
|
||||||
ROS_INFO("Mission service called!");
|
ROS_INFO("Waypoint setup service called!");
|
||||||
} else {
|
} else {
|
||||||
ROS_INFO("Mission service failed!");
|
ROS_INFO("Waypoint setup service failed!");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void roscontroller::SetMode(std::string mode, int delay_miliseconds){
|
void roscontroller::fc_command_setup(){
|
||||||
// wait if necessary
|
|
||||||
if (delay_miliseconds > 0){
|
|
||||||
std::this_thread::sleep_for( std::chrono::milliseconds ( delay_miliseconds ) );
|
|
||||||
}
|
|
||||||
// set mode
|
|
||||||
mavros_msgs::SetMode set_mode_message;
|
|
||||||
set_mode_message.request.base_mode = 0;
|
|
||||||
set_mode_message.request.custom_mode = mode;
|
|
||||||
if(mode_client.call(set_mode_message)) {
|
|
||||||
ROS_INFO("Set Mode Service call successful!");
|
|
||||||
} else {
|
|
||||||
ROS_INFO("Set Mode Service call failed!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//todo: this
|
|
||||||
void roscontroller::SetModeAsync(std::string mode, int delay_miliseconds){
|
|
||||||
std::thread([&](){SetMode(mode, delay_miliseconds);}).detach();
|
|
||||||
cout << "Async call called... " <<endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*Prepare messages for each step and publish*/
|
|
||||||
/*******************************************************************************************************/
|
|
||||||
/* Message format of payload (Each slot is uint64_t) */
|
|
||||||
/* _________________________________________________________________________________________________ */
|
|
||||||
/*| | | | | | */
|
|
||||||
/*|Pos x|Pos y|Pos z|Size in Uint64_t|robot_id|Buzz_msg_size|Buzz_msg|Buzz_msgs with size......... | */
|
|
||||||
/*|_____|_____|_____|________________________________________________|______________________________| */
|
|
||||||
/*******************************************************************************************************/
|
|
||||||
void roscontroller::prepare_msg_and_publish(){
|
|
||||||
|
|
||||||
/* flight controller client call if requested from Buzz*/
|
/* flight controller client call if requested from Buzz*/
|
||||||
/*FC call for takeoff,land and gohome*/
|
/*FC call for takeoff,land and gohome*/
|
||||||
int tmp = buzzuav_closures::bzz_cmd();
|
int tmp = buzzuav_closures::bzz_cmd();
|
||||||
double* goto_pos = buzzuav_closures::getgoto();
|
double* goto_pos = buzzuav_closures::getgoto();
|
||||||
|
|
||||||
if (tmp == 1){
|
if (tmp == 1){
|
||||||
cmd_srv.request.param7 = goto_pos[2];
|
cmd_srv.request.param7 = goto_pos[2];
|
||||||
//cmd_srv.request.z = goto_pos[2];
|
//cmd_srv.request.z = goto_pos[2];
|
||||||
cmd_srv.request.command = buzzuav_closures::getcmd();
|
cmd_srv.request.command = buzzuav_closures::getcmd();
|
||||||
if (mav_client.call(cmd_srv)){ROS_INFO("Reply: %ld", (long int)cmd_srv.response.success); }
|
if (mav_client.call(cmd_srv)){
|
||||||
else ROS_ERROR("Failed to call service from flight controller");
|
ROS_INFO("Reply: %ld", (long int)cmd_srv.response.success);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
ROS_ERROR("Failed to call service from flight controller");
|
||||||
|
|
||||||
} else if (tmp == 2) { /*FC call for goto*/
|
} else if (tmp == 2) { /*FC call for goto*/
|
||||||
/*prepare the goto publish message */
|
/*prepare the goto publish message */
|
||||||
cmd_srv.request.param5 = goto_pos[0];
|
cmd_srv.request.param5 = goto_pos[0];
|
||||||
|
@ -305,6 +292,60 @@ namespace rosbzz_node{
|
||||||
} else if (tmp == 3) { /*FC call for arm*/
|
} else if (tmp == 3) { /*FC call for arm*/
|
||||||
Arm();
|
Arm();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: split this
|
||||||
|
/*Prepare messages for each step and publish*/
|
||||||
|
/*******************************************************************************************************/
|
||||||
|
/* Message format of payload (Each slot is uint64_t) */
|
||||||
|
/* _________________________________________________________________________________________________ */
|
||||||
|
/*| | | | | | */
|
||||||
|
/*|Pos x|Pos y|Pos z|Size in Uint64_t|robot_id|Buzz_msg_size|Buzz_msg|Buzz_msgs with size......... | */
|
||||||
|
/*|_____|_____|_____|________________________________________________|______________________________| */
|
||||||
|
/*******************************************************************************************************/
|
||||||
|
void roscontroller::prepare_msg_and_publish(){
|
||||||
|
|
||||||
|
if(fcclient_name == "/mavros/cmd/command"){
|
||||||
|
int tmp = buzzuav_closures::bzz_cmd();
|
||||||
|
double* goto_pos = buzzuav_closures::getgoto();
|
||||||
|
|
||||||
|
switch(tmp){
|
||||||
|
// TAKEOFF -- LAND
|
||||||
|
case 1:
|
||||||
|
if(!armstate){
|
||||||
|
SetMode("LOITER", 0);
|
||||||
|
Arm();
|
||||||
|
armstate = 1;
|
||||||
|
SetMode("GUIDED", 2000);
|
||||||
|
}
|
||||||
|
cmd_srv.request.param7 = goto_pos[2];
|
||||||
|
cmd_srv.request.command = buzzuav_closures::getcmd();
|
||||||
|
|
||||||
|
// just to be safe -- while landing!
|
||||||
|
if(armstate == 1 && buzzuav_closures::getcmd() == 22){
|
||||||
|
SetMode("GUIDED", 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mav_client.call(cmd_srv)){
|
||||||
|
ROS_INFO("Reply: %ld", (long int) cmd_srv.response.success);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
ROS_ERROR("Failed to call service from flight controller");
|
||||||
|
break;
|
||||||
|
// GOTO
|
||||||
|
case 2:
|
||||||
|
WaypointMissionSetup(goto_pos[0], goto_pos[1], goto_pos[2]);
|
||||||
|
break;
|
||||||
|
// ARM
|
||||||
|
case 3:
|
||||||
|
Arm();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
fc_command_setup();
|
||||||
|
}
|
||||||
|
|
||||||
/*obtain Pay load to be sent*/
|
/*obtain Pay load to be sent*/
|
||||||
//fprintf(stdout, "before getting msg from utility\n");
|
//fprintf(stdout, "before getting msg from utility\n");
|
||||||
uint64_t* payload_out_ptr= buzz_utility::out_msg_process();
|
uint64_t* payload_out_ptr= buzz_utility::out_msg_process();
|
||||||
|
@ -601,7 +642,7 @@ namespace rosbzz_node{
|
||||||
buzzuav_closures::flight_status_update(1);
|
buzzuav_closures::flight_status_update(1);
|
||||||
else if (msg->mode == "LAND")
|
else if (msg->mode == "LAND")
|
||||||
buzzuav_closures::flight_status_update(4);
|
buzzuav_closures::flight_status_update(4);
|
||||||
else
|
else // ground standby = LOITER?
|
||||||
buzzuav_closures::flight_status_update(1);//?
|
buzzuav_closures::flight_status_update(1);//?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -708,6 +749,22 @@ namespace rosbzz_node{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void roscontroller::SetMode(std::string mode, int delay_miliseconds){
|
||||||
|
// wait if necessary
|
||||||
|
if (delay_miliseconds > 0){
|
||||||
|
std::this_thread::sleep_for( std::chrono::milliseconds ( delay_miliseconds ) );
|
||||||
|
}
|
||||||
|
// set mode
|
||||||
|
mavros_msgs::SetMode set_mode_message;
|
||||||
|
set_mode_message.request.base_mode = 0;
|
||||||
|
set_mode_message.request.custom_mode = mode;
|
||||||
|
if(mode_client.call(set_mode_message)) {
|
||||||
|
ROS_INFO("Set Mode Service call successful!");
|
||||||
|
} else {
|
||||||
|
ROS_INFO("Set Mode Service call failed!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* RC command service */
|
/* RC command service */
|
||||||
bool roscontroller::rc_callback(mavros_msgs::CommandLong::Request &req,
|
bool roscontroller::rc_callback(mavros_msgs::CommandLong::Request &req,
|
||||||
mavros_msgs::CommandLong::Response &res){
|
mavros_msgs::CommandLong::Response &res){
|
||||||
|
@ -720,19 +777,14 @@ namespace rosbzz_node{
|
||||||
ROS_INFO("RC_call: TAKE OFF!!!!");
|
ROS_INFO("RC_call: TAKE OFF!!!!");
|
||||||
rc_cmd=mavros_msgs::CommandCode::NAV_TAKEOFF;
|
rc_cmd=mavros_msgs::CommandCode::NAV_TAKEOFF;
|
||||||
/* arming */
|
/* arming */
|
||||||
<<<<<<< HEAD
|
|
||||||
SetMode();
|
SetMode();
|
||||||
|
cout << "ARM: " << armstate <<endl;
|
||||||
if(!armstate) {
|
if(!armstate) {
|
||||||
armstate =1;
|
armstate = 1;
|
||||||
Arm();
|
|
||||||
}
|
|
||||||
=======
|
|
||||||
SetMode("LOITER", 0);
|
SetMode("LOITER", 0);
|
||||||
//SetMode("GUIDED", 0);
|
|
||||||
cout << "this..." << endl;
|
|
||||||
SetModeAsync("GUIDED", 2000);
|
|
||||||
Arm();
|
Arm();
|
||||||
>>>>>>> 4ac9d89f7c5e82fe99a48f616c587efd01d50ddd
|
if(fcclient_name == "/mavros/cmd/command") { SetMode("LOITER", 2000); }
|
||||||
|
}
|
||||||
buzzuav_closures::rc_call(rc_cmd);
|
buzzuav_closures::rc_call(rc_cmd);
|
||||||
res.success = true;
|
res.success = true;
|
||||||
break;
|
break;
|
||||||
|
@ -759,25 +811,12 @@ namespace rosbzz_node{
|
||||||
res.success = true;
|
res.success = true;
|
||||||
break;
|
break;
|
||||||
case mavros_msgs::CommandCode::NAV_WAYPOINT:
|
case mavros_msgs::CommandCode::NAV_WAYPOINT:
|
||||||
ROS_INFO("RC_Call: GO TO!!!! ");
|
|
||||||
|
|
||||||
//WaypointMissionSetup();
|
|
||||||
double rc_goto[3];
|
double rc_goto[3];
|
||||||
rc_goto[0] = req.param5;
|
rc_goto[0] = req.param5;
|
||||||
rc_goto[1] = req.param6;
|
rc_goto[1] = req.param6;
|
||||||
rc_goto[2] = req.param7;
|
rc_goto[2] = req.param7;
|
||||||
|
|
||||||
WaypointMissionSetup(req.param5, req.param6, req.param7);
|
WaypointMissionSetup(req.param5, req.param6, req.param7);
|
||||||
/*
|
|
||||||
WaypointMissionSetup(45.505293f, -73.614722f, 2.0f);
|
|
||||||
std::this_thread::sleep_for( std::chrono::milliseconds ( 100 ) );
|
|
||||||
WaypointMissionSetup(45.505324f, -73.614502f, 2.0f);
|
|
||||||
std::this_thread::sleep_for( std::chrono::milliseconds ( 100 ) );
|
|
||||||
WaypointMissionSetup(45.505452f, -73.614655f, 2.0f);
|
|
||||||
std::this_thread::sleep_for( std::chrono::milliseconds ( 100 ) );
|
|
||||||
WaypointMissionSetup(45.505463f, -73.614389f, 2.0f);
|
|
||||||
std::this_thread::sleep_for( std::chrono::milliseconds ( 100 ) );
|
|
||||||
*/
|
|
||||||
|
|
||||||
buzzuav_closures::rc_set_goto(rc_goto);
|
buzzuav_closures::rc_set_goto(rc_goto);
|
||||||
rc_cmd=mavros_msgs::CommandCode::NAV_WAYPOINT;
|
rc_cmd=mavros_msgs::CommandCode::NAV_WAYPOINT;
|
||||||
|
@ -797,4 +836,3 @@ namespace rosbzz_node{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue