CCSDS AOS (Advanced Orbiting Systems) Transfer Frame for satellite downlinks
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/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries aos csvt alcotest) 3 + (libraries aos csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/dariol83/test.ml
··· 26 26 } 27 27 28 28 let vector_codec = 29 - Csvt.( 29 + Csv.( 30 30 Row.( 31 31 obj 32 32 (fun ··· 95 95 if String.length s = 0 then None else Some (int_of_string ("0x" ^ s)) 96 96 97 97 let load_vectors () = 98 - match Csvt.decode_file vector_codec "traces/vectors.csv" with 98 + match Csv.decode_file vector_codec "traces/vectors.csv" with 99 99 | Ok rows -> rows 100 100 | Error e -> Alcotest.failf "CSV decode: %s" e 101 101