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