about summary refs log tree commit diff
path: root/lri-proto/proto/hot_pixel_map.proto
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2023-09-10 02:44:01 -0500
committergennyble <gen@nyble.dev>2023-09-10 02:44:01 -0500
commita962ba9c853a797e9a41b2830ec0181b167d8cd9 (patch)
tree7de53dfcaf87c5d4b43f2e8b38161eb193c136ad /lri-proto/proto/hot_pixel_map.proto
parent70187683361d97a8b5a251567323c323c90302f2 (diff)
downloadlri-rs-a962ba9c853a797e9a41b2830ec0181b167d8cd9.tar.gz
lri-rs-a962ba9c853a797e9a41b2830ec0181b167d8cd9.zip
reorg
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;
+    }
+}