CCSDS Command Link Control Word (CLCW) for spacecraft command
0
fork

Configure Feed

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

clcw: fix README — remove nonexistent vcid_exn, vcid is plain int

+1 -2
+1 -2
README.md
··· 25 25 26 26 (* Encode a CLCW *) 27 27 let () = 28 - let vcid = Clcw.vcid_exn 10 in 29 - let clcw = Clcw.v ~vcid ~report_value:50 ~lockout:true () in 28 + let clcw = Clcw.v ~vcid:10 ~report_value:50 ~lockout:true () in 30 29 let word = Clcw.encode clcw in 31 30 Printf.printf "Encoded: 0x%08X\n" word 32 31 ```