CCSDS 133.0-B Space Packet Protocol for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

space-packet: fix README — make_exn → v_exn

+2 -2
+2 -2
README.md
··· 31 31 ```ocaml 32 32 (* Create a telemetry packet *) 33 33 let pkt = 34 - Space_packet.make_exn 34 + Space_packet.v_exn 35 35 ~packet_type:Telemetry 36 36 ~apid:100 37 37 ~sequence_flags:Unsegmented ··· 78 78 ## API 79 79 80 80 - `Space_packet.make` - Create a space packet (returns Result) 81 - - `Space_packet.make_exn` - Create a space packet (raises on error) 81 + - `Space_packet.v_exn` - Create a space packet (raises on error) 82 82 - `Space_packet.encode` - Serialize packet to bytes 83 83 - `Space_packet.decode` - Parse packet from bytes 84 84 - `Space_packet.write` - Write packet to bytesrw writer