amgross
amgross
# Pull request ## Choose Correct - [X] bug - [ ] feature ## Describe the pull request Using G++ compiler on windows, I was getting maybe-uninitialized warning on the...
https://github.com/EmbeddedRPC/erpc/blob/60a3cc1f84351cc3bf1af719d662e979a8f19b1c/erpc_c/infra/erpc_crc16.cpp#L32-L38 Maybe I am missing something. Why can't the variables `crc`, `temp`, `andValue `, `xorValue `be uint32_t and `byte `be uint8_t ? It makes things cleaner and I don't see...
**Describe the bug** There are cases that length that got with readBinary (and readString also probably) will be overwritten by other readBinary or by reading the length. It supposed to...
**Describe the bug** In case of nullable buffer, if the buffer is not null the client writes the length twice. Once explicitly and once as part of writeBinary **To Reproduce**...
**Is your feature request related to a problem? Please describe.** In regular threadx, each thread can know is identity and basic data on himself by accessing its thread pointer using...
For example here void * is used here: https://github.com/azure-rtos/threadx/blob/8ff9910ddc089e7af91e4089b26f225aba5d7eb7/ports_module/cortex_a35/gnu/inc/tx_port.h#L214 I know that the module struct wasn't declared yet, but it can be solved by struct forward declaration. I think that...
https://github.com/EmbeddedRPC/erpc/blob/2890823cb2eae2b024ecf87802c83c87b79773dd/erpc_c/infra/erpc_message_buffer.hpp#L364 How this API is currently, the user of it must have its own object, and the implementation of this API must create the object on its stack/global/whatever and then...
Hi @mity , If you stopped to maintain this repo, please give someone write access to it so it could continue be approved, it is really great repo.
Add utility of -jXX to run the unit tests (that anyway running in separate process) in parallel. To avoid prints that will mix together, need that the processes won't write...
**Describe the bug** tx_thread_module_kernel_stack_start is allocated at _txm_module_manager_thread_create from the object pool, but is not released at thread delete function (it is deleted upon module stop when all objects of...