RPMsg inter-partition messaging
0
fork

Configure Feed

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

ocaml-rpmsg: defer README example via let run ()

The block called [Eio_main.run] then [Rpmsg.Ctrl.open_] which opened
[/dev/rpmsg_ctrl0] under mdx execution, failing on every machine
without a remoteproc. Wrap as [run () = ...] and add the [eio*] /
[fmt] mdx libraries that the example references.

+2 -2
+1 -1
README.md
··· 36 36 Open an endpoint, wrap the fd in Eio flows, and exchange messages: 37 37 38 38 ```ocaml 39 - let () = 39 + let run () = 40 40 Eio_main.run @@ fun env -> 41 41 Eio.Switch.run @@ fun sw -> 42 42 let ctrl = Rpmsg.Ctrl.open_ () in
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries rpmsg)) 7 + (libraries rpmsg eio_main eio eio.core eio.unix fmt))