cancel
Showing results for 
Search instead for 
Did you mean: 

Can I send a Data Array instead of a string Array? AP2P ST25R3911b

Titus Schauer
Associate II

Hi,

Im using the Embedded Lib.

Im experimenting with the demo_ap2p_prop. I want to send a Hex Array as message instead of a string array.

Do i use the same funktion?

Is there a diffrent with the size ?

or is there a other way to send Hex Data ?

err = demoTransceiveBlocking( message, strlen(message), &rxData, &rxLen, RFAL_FWT_NONE);

i tried sizeof :

err = demoTransceiveBlocking( message, size of(message), &rxData, &rxLen, RFAL_FWT_NONE);

but the demoTransceiveBlocking funktion gave me back the errorcode 24 "ERR_NOTSUPP" what am i missing?

1 ACCEPTED SOLUTION

Accepted Solutions
Ulysses HERNIOSUS
ST Employee

Hi,

the actual content should not matter. Likely there are size limits but then I would expect a different error code.

Please debug into the function (and call stack) to see where this ERR_NOTSUPP is originally being triggered.

BR, Ulysses

View solution in original post

1 REPLY 1
Ulysses HERNIOSUS
ST Employee

Hi,

the actual content should not matter. Likely there are size limits but then I would expect a different error code.

Please debug into the function (and call stack) to see where this ERR_NOTSUPP is originally being triggered.

BR, Ulysses