about summary refs log tree commit diff
path: root/lri-proto/proto/hot_pixel_map.proto
diff options
context:
space:
mode:
Diffstat (limited to 'lri-proto/proto/hot_pixel_map.proto')
-rw-r--r--lri-proto/proto/hot_pixel_map.proto16
1 files changed, 16 insertions, 0 deletions
diff --git a/lri-proto/proto/hot_pixel_map.proto b/lri-proto/proto/hot_pixel_map.proto
new file mode 100644
index 0000000..4cd53dc
--- /dev/null
+++ b/lri-proto/proto/hot_pixel_map.proto
@@ -0,0 +1,16 @@
+syntax = "proto2";
+
+package ltpb;
+
+message HotPixelMap {
+    repeated HotPixelMeasurement data = 1;
+    message HotPixelMeasurement {
+        required uint64 data_offset = 1;
+        required uint32 data_size = 2;
+        required uint32 data_exposure = 3;
+        required int32 sensor_temparature = 4;
+        required float sensor_gain = 5;
+        optional float pixel_variance = 6;
+        optional float threshold = 7;
+    }
+}