protobufs/notused/future.proto

37 lines
804 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
2021-01-29 10:11:10 +08:00
/*
* This file documents protobufs that are being considered but are not yet in use
*/
2021-01-29 10:11:10 +08:00
/*
2021-04-20 19:08:28 +10: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 10:11:10 +08:00
*/
message ManufacturingData {
2021-01-29 10:11:10 +08:00
/*
* center frequency for the radio hardware that was stuffed
*/
uint32 fradioFreq = 1;
2021-01-29 10:11:10 +08:00
/*
2021-01-29 10:11:10 +08:00
* TBEAM, HELTEC, etc...
*/
string hw_model = 2;
2021-01-29 10:11:10 +08:00
/*
* Hardware version number
*/
string hw_version = 3;
2021-01-29 10:11:10 +08: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;
}