IPC Limitation

Hi,

Thanks for your reply.

As far as your second problem goes, you can try sending your data as a byte array instead of a string.
I tried this with the following syntax:

HANDLER SpiReceptionHandler
(
Event spi_event_type,
uint8 msg [MSG_MAX_LEN] IN,
uint16 msgLen IN
);

However the api parser doesn’t allow to use an array of uint8 in the handler (there isn’t a parsing error if it’s in a function).

Did I misunderstood something concerning the syntax to define a byte array ?

Best regards,