celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
// CELP System Event protobufs
syntax = "proto3";
package celp.protobuf.se;
option optimize_for = SPEED;

//
// System Event details message
//

message Power {
    enum PowerMode {
        MODE_BATTERY = 0;
        MODE_SUPPLY = 1;
    };

    // The mode the device is operating in
    PowerMode mode = 1;

    // The amount of microseconds passed since the device last booted
    uint64 uptime = 3;
}