stm32_serDes_protobuf_project/app/quaternion.proto
2024-06-11 19:59:25 +03:00

9 lines
111 B
Protocol Buffer

syntax = "proto3";
message Quaternion {
float w = 1;
float x = 2;
float y = 3;
float z = 4;
}