Skip to main content
Visitor II
March 30, 2023
Solved

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

  • March 30, 2023
  • 1 reply
  • 722 views

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?

    This topic has been closed for replies.
    Best answer by Ulysses HERNIOSUS

    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

    1 reply

    Technical Moderator
    March 30, 2023

    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