2023-03-30 01:02 AM
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?
Solved! Go to Solution.
2023-03-30 03:45 AM
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
2023-03-30 03:45 AM
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