12 lines
180 B
Protocol Buffer
12 lines
180 B
Protocol Buffer
// Copyright (c) 2023, AgiBot Inc.
|
|
// All rights reserved.
|
|
|
|
syntax = "proto3";
|
|
|
|
package aimrt.protocols.common;
|
|
|
|
message Header {
|
|
uint64 time_stamp = 1;
|
|
string frame_id = 2;
|
|
}
|