Dan Cristoloveanu

Results 34 comments of Dan Cristoloveanu

CBS uses 2 links (a sender link and a receiver link) to have a message request/response pattern which is then used to execute basic RPCs like put_token. The working draft...

Hi @ahmedawad1 I was able to repro this and indeed after adding the cbs_destroy the print with the error is still hit. The reason is that CBS does not differentiate...

Marking this as an enhancement to add a disconnect callback to CBS.

Thanks for reporting this, I'll double check the usage of ASYNC_OPERATION_HANDLE and let you know if any more issue lurks in there.

Hi @mario19911, Thanks for reporting it, it is a miss, we'll definitely fix it. Thanks, /Dan

Hi @mario19911 PR #76 has been created to fix this and add float and double support. It should get checked in to master soon. Thanks, /Dan

Hi @mario19911 AMQP uses network byte order so that machines that different endianess can talk to each other. By casting to uint32_t* and putting the high byte of the uint32_t...

@mario19911 The endianess applies to both uint32_t and float/double. So by casting to (uint32_t*) and using the 4 bytes as a 32 bit integer makes sure that the high byte...

@mario19911 Interesting, I reopened the issue, let me look at the ARM7 case. Cheers, /Dan

Hi @mario19911 You are right that there are some cases where float endianess is different than integer endianess. Apparently there are some cases also where the 64bit double has the...