Skip to content

Commit aad1a8b

Browse files
authored
Fixed MD5 hash on Sensor.Image message type definition.
1 parent 13a4070 commit aad1a8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Integrations/ROS/Microsoft.Psi.ROS/RosMessageTypes.fs

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ module RosMessageTypes =
162162

163163
module Image =
164164
let Def = { Type = "sensor_msgs/Image"
165-
MD5 = ""
165+
MD5 = "060021388200f6f0f447d0fcd9c64743"
166166
Fields = ["header", StructDef Standard.Header.Def.Fields
167167
"height", UInt32Def
168168
"width", UInt32Def
@@ -615,4 +615,4 @@ module RosMessageTypes =
615615
Fields = ["data", StringDef] }
616616
type Kind = string
617617
let FromMessage m = m |> Seq.toList |> function ["data", StringVal str] -> str | _ -> malformed ()
618-
let ToMessage str = ["data", StringVal str] |> Seq.ofList
618+
let ToMessage str = ["data", StringVal str] |> Seq.ofList

0 commit comments

Comments
 (0)