nslowell

Results 6 comments of nslowell

Thank you so much for that information! Sorry for my delayed response. I am not an admin of our local Coverity Connect system so it took some time working with...

Thanks for responding. I will highlight again that this is CDDL from the creators of zcbor, it's not my direct CDDL. My actual CDDL is simpler--though perhaps still a little...

I appreciate the quick feedback. Here's a simpler CDDL based on what I'm trying to do: ``` CommandIDs = (Zero: 0) / (One: 1) / (Two: 2) / (Three: 3)...

The resulting C code for CommandIDs is this: ``` struct CommandIDs_ { enum { _CommandIDs_Zero = 0, _CommandIDs_One = 1, _CommandIDs_Two = 2, _CommandIDs_Three = 3, } _CommandIDs_choice; }; ```...

Sorry the delay. I ran with your exact CDDL and am getting a crash. See below. Any ideas? ``` > RUST_BACKTRACE=full ~/cddl-codegen/target/release/cddl-codegen --input Test2.cddl --output export int int Switching from...

cool, thanks. I was able to produce code with your sample you gave me. So, now I've got this CDDL that's causing a different crash: ``` CommandIDs = ( Zero:...