Jaremy Creechley
Jaremy Creechley
Curious, what's the status of this issue? I'd be interested in double's and/or multi-dimensional data.
Ok, nice. I used it on some bigger files and there is one issue so far. The "import as proc" seems to only spit out the first import if there's...
Thanks! I like the elegant design of the system overall. I'm having some difficulty understanding some of the semantics and mapping those into my embedded use case. The semantics of...
I've been reviewing the uSCXML library, which emits a C code based SCXML state machine. It's mostly similar to uFSM but targets SCXML and has support for event data. It...
Good comments! I went over and modified the code last night to pass the state / transition pointers. That was pretty easy. But handling the data and the events is...
About needing the state machine contexts external to the SM (in the guards, actions, etc).. I looked through it a bit more. the uSCXML library had them so I'd assumed...
That's looking promising. I'll try it out with some simple data models. Wonder if I could get a "count down" working...
Made a simple test for the equivalent of an SCXML `send` by just calling the `queue_put`. I made the test just do a simple repeat (which is surprisingly handy). Next...
Second this! It builds on my system (ubuntu, gcc-7.2.0).
I'd second that providing `map`/`flatMap` proc's is useful since Nim doesn't provide a `if let Some(x) = val` style check or the walrus operator. Those are kinda ugly anyways imho,...