CCSDS Space Data Link Security (355.0-B-2)
0
fork

Configure Feed

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

Wire.bool→Wire.bit rename; cfdp/ltp adopt wire; dune fmt

- CCSDS packages (aos, clcw, fsr, sdls, space-packet, tc, tm, uslp):
Wire.bool renamed to Wire.bit upstream; mechanical migration.
- ocaml-cfdp: adopt wire library for PDU header codec.
- ocaml-ltp: adopt wire library for segment header codec.
- ocaml-cop1: simplify interop test error formatting.
- dune fmt: reformat irmin, pus, scitt, crypto, tc/uslp 3D specs.
- monopam: add TODO.md tracking cram coverage gaps.

+1 -1
+1 -1
lib/ep.ml
··· 221 221 The header is a fixed 3-byte structure using bitfields. *) 222 222 223 223 let bits8 n = Wire.bits ~width:n Wire.U8 224 - let bool8 = Wire.bool (bits8 1) 224 + let bool8 = Wire.bit (bits8 1) 225 225 let w_type = Wire.Field.v "Type" bool8 226 226 let w_uf = Wire.Field.v "UF" bool8 227 227 let w_sg = Wire.Field.v "SG" (bits8 2)