RTL-SDR IQ sample reader
0
fork

Configure Feed

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

claude: complete Err -> Error module rename across call sites

Follow up to the module rename: update the remaining callers that
still referenced [Err] (library [claude.ml{,i}], [client.ml], the test
driver [test.ml]), and fix one stray [^ e] string concatenation in
hermest's CLI that needed [Json.Error.to_string e] now that
[Json.of_string] yields a structured error.

-7
-1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (modules fuzz fuzz_rtlsdr) 4 3 (libraries rtlsdr alcobar)) 5 4 6 5 (rule
-6
test/test_rtlsdr.ml
··· 1 1 let pi = Float.pi 2 2 3 - let complex_testable = 4 - Alcotest.testable 5 - (fun ppf (c : Dsp.Complex.t) -> Fmt.pf ppf "(%f + %fi)" c.re c.im) 6 - (fun (a : Dsp.Complex.t) (b : Dsp.Complex.t) -> 7 - Float.abs (a.re -. b.re) < 1e-6 && Float.abs (a.im -. b.im) < 1e-6) 8 - 9 3 let approx_complex_testable eps = 10 4 Alcotest.testable 11 5 (fun ppf (c : Dsp.Complex.t) -> Fmt.pf ppf "(%f + %fi)" c.re c.im)