CCSDS USLP (Unified Space Link Protocol) Transfer Frame- unified TM/TC/AOS
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/spacepackets/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries uslp csvt alcotest) 3 + (libraries uslp csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/spacepackets/test.ml
··· 66 66 let bool_of_int n = n <> 0 67 67 68 68 let frame_codec = 69 - Csvt.( 69 + Csv.( 70 70 Row.( 71 71 obj 72 72 (fun ··· 125 125 |> finish)) 126 126 127 127 let load_vectors () = 128 - match Csvt.decode_file frame_codec (trace "frames.csv") with 128 + match Csv.decode_file frame_codec (trace "frames.csv") with 129 129 | Ok rows -> rows 130 130 | Error e -> Alcotest.failf "CSV decode: %s" e 131 131