Michael Bryan

Results 216 issues of Michael Bryan

We're linking to a document called `Anest V9.12.3(L) Guide for OEM Integration.doc` who's name has been URL-encoded so the link gets rendered correctly. However, it looks we don't URL-decode the...

I imagine it may be useful for people not necessarily familiar with windows resource files to add in an example of you accessing some hypothetical icon file you've compiled in....

I'm wanting to test the examples in the README for [a crate][repo] wrapping the `libsignal-protocol-c` library. My `*-sys` crate is able to link to the C library just fine (tests...

I think it'd be cool if `rustmatic` could handle ladder logic programs as well as structured text. One way we could do this is by getting people to write ladder...

I just came across [this example](https://github.com/rustwasm/walrus/blob/master/examples/build-wasm-from-scratch.rs) of compiling an entire function to WASM using the `walrus` crate, and they make it look pretty easy. I reckon we should be able...

I'm not sure when we want to resolve #7 and make the repository publicly accessible, but when we do I'd like to activate CI for this project. I just rebased...

The `structured-text` parser doesn't know how to handle operator precedence. At the moment, **al** binary operators will be parsed using `infix = { expression_inner ~ (binary_operator ~ expression_inner)+ }`. I'm...

Looking at the [Overview](https://github.com/NOP0/rustmatic/blob/master/Overview.png) diagram, it sounds like the core of the PLC runtime would be something like this: ```rust while running { read_inputs(); poll_waiting_processes(); write_outputs(); do_background_tasks_until_next_tick(); } ``` Yet...

What assumptions are we making about the environment? - Will we have access to an allocator? - If so, how much memory would you expect to be working with (50KB,...