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 PowerDown {
    enum Reason {
        OTHER = 0x0;
        BATTERY_MODE_DETECTED = 0x1;
    }

    // The time the PowerDown event was issued (in ms since boot)
    uint64 issue_time = 1;

    // The reason for the reboot
    Reason reason = 3;

    // Textual representation of reason / additional info
    string reason_info = 5;
}