Philippe

Results 11 comments of Philippe

> Hi @pgu-swir , i really appreciate your activity here. This is not only about strings but about all pointer types variables (list, binaries, ...) > YW :-) I agree...

Thanks for sharing - this is what I have implemented for strings, but there is still fixes to be done for out strings with @max_length annotation. I started to look...

Sorry I missed that comment earlier. I don't think "reverted" is the right term b/c my change was not to restrict the release to timeout only, but instead was to...

I'm a bit confused. The idea of using kErpcStatus_Timeout was to provide a way to reach & alter the outer control loop in a non-fatal way. If the PHY returns...

Just as a curiosity, why would a timeout in the transport itself not allow that to be solved? If one core dies in the middle of an RPC, wouldn't the...

The problem I had is that jerry_char_t is a "uint8_t" not " a "uint8_t*" so semantically different and I tried that initially but had issues. But its's true that I...

So I re-checked and there is no way around, unfortunately. - in the headers that come with the library, "jerry_char_t" is defined as an uint8_t and all the function prototypes...

hi @Hadatko, yes, this is what I tried to do but compilation of shims fails because "jerry_char_t" is an uint8_t, so "jerry_def" is an uint8_t*, and in the shim, there...

Ideally, it might be 2 things 1- possibility to define an alias of a string as a pointer, i.e. something like ``` type jerry_char_t @ptr string or type jerry_char_t pstring...

Thanks so much for looking at this. [edit]: in fact, looking a bit harder I found the template where to cast the kString element, so 2- is solved and if...