meshtastic-protobuf/notused/future.proto

37 wiersze
804 B
Protocol Buffer
Czysty Zwykły widok Historia

syntax = "proto3";
2021-01-29 02:11:10 +00:00
/*
* This file documents protobufs that are being considered but are not yet in use
*/
2021-01-29 02:11:10 +00:00
/*
2021-04-20 09:08:28 +00:00
* Placeholder for data we will eventually set during initial programming.
* This will allow us to stop having a load for each region.
2021-01-29 02:11:10 +00:00
*/
message ManufacturingData {
2021-01-29 02:11:10 +00:00
/*
* center frequency for the radio hardware that was stuffed
*/
uint32 fradioFreq = 1;
2021-01-29 02:11:10 +00:00
/*
2021-01-29 02:11:10 +00:00
* TBEAM, HELTEC, etc...
*/
string hw_model = 2;
2021-01-29 02:11:10 +00:00
/*
* Hardware version number
*/
string hw_version = 3;
2021-01-29 02:11:10 +00:00
/*
* This code is written during manfacturing time and allows users to confirm that
* the initial manufacturing tests succeeded.
*
* 0 means no test performed.
* 1 means all tests passed
* negative numbers indicate particular error codes
*/
sint32 selftest_result = 4;
}