celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
syntax = "proto3";
package celp.protobuf.gw;
import "celp_header.proto";
option optimize_for = SPEED;

message OffboardData {
    // Base header from CELP
    celp.protobuf.Header header = 1;

    // The sequence ID of the message
    uint64 message_id = 3;

    // The IMEI number associated to the device the mesage originates from
    string imei = 5;

    // The payload of the message
    bytes payload = 7;
}