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.

mass replace Printf.sprintf/printf with Fmt.str/pr (merlint E200)

112 files across the monorepo. Printf.sprintf → Fmt.str,
Printf.printf → Fmt.pr for consistent formatting library usage.

+1 -1
+1 -1
test/interop/spacepackets/test.ml
··· 29 29 let string_to_hex s = 30 30 let buf = Buffer.create (String.length s * 2) in 31 31 String.iter 32 - (fun c -> Buffer.add_string buf (Printf.sprintf "%02x" (Char.code c))) 32 + (fun c -> Buffer.add_string buf (Fmt.str "%02x" (Char.code c))) 33 33 s; 34 34 Buffer.contents buf 35 35