我目前正在使用Arduino Uno s、9DOFs 和XBee s,我正在尝试创建一个可以通过串行、逐字节发送的结构,然后重新构建成一个结构。
到目前为止,我有以下代码:
struct AMG_ANGLES {
float yaw;
float pitch;
float roll;
};
int main() {
AMG_ANGLES struct_data;
struct_data.yaw = 87.96;
struct_data.pitch = -114.58;
struct_data.roll = 100.50;
char* data = new char[sizeof(struct_data)];
for(unsigned int i = 0; i<sizeof(struct_data); i++){
// cout << (char*)(&struct_data+i) << endl;
data[i] = (char*)(&struct_data+i); //Store the bytes of the struct to an array.
}
AMG_ANGLES* tmp = (AMG_ANGLES*)data; //Re-make the struct
cout << tmp.yaw; //Display the yaw to see if it's correct.
}
来源:http ://codepad.org/xMgxGY9Q
这段代码似乎不起作用,我不确定我做错了什么。
我该如何解决这个问题?