Hi,
I have a few questions about the pQueue field of CMD_PROP_RX. I would like the received packets to be copied to a static buffer which is copied out of kernel space into application space (a construct of the OS I am using). Unfortunately, the pointer to a structure of pointers object which is used in TI's example code is not something which can be safely implemented in the language I am using, Rust. I can create this structure but the radio mcu is faulting with `INTERNAL_ERROR` when I pass a pointer to the struct of pointers.
What exactly is the radio mcu doing with the pQueue field when it reads the given pointer? Does it copy the entire received message contents into the buffer pointed to by *pCurrentEntry? Or something else? I will be able to give the radio mcu a structure it recognizes if I know more about how it operates on this field.
Best,
Robert