Michael Meier
Michael Meier
Is it possible, in the callback function for event `x`, to call `event_free(x)`? Reading the code of `event_process_active_single_queue` I am lead to think the answer is "yes" because the function...
As already discussed on Gitter, here is an example component that does a couple of translations to a Vector of Streams. Ideally I would like all signals stages1-stages5 to be...
In the current implementation, the `ipv{4,6}conn` is bound to `224.0.0.1:5353` which works out to `0.0.0.0:5353` when you ask the connection's `LocalAddr()` method. Accordingly, multicast writes go out to *all* interfaces...
I have some Protobuf/gRPC generated types that I would like to pretty print using spew. Some types, like enums, have `String()` methods generated that produce nice, readable output, for an...
In a simulation, which by default uses Verilator, I have the following line: ```scala val writer = new BufferedWriter(new FileWriter(Paths.get(currentTestPath, filename).toString)) ``` This works fine. However if I change to...