This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SW-TM4C: Incorrect assertion in SSIAdvDataPutFrameEnd*

Part Number: SW-TM4C

The driverlib functions SSIAdvDataPutFrameEnd and SSIAdvDataPutFrameEndNonBlocking both have the following incorrect assertion:

ASSERT((ui32Data & 0xff) == 0);

It's missing a "~" before the "0xff". The hardware ignores the upper 24 bits of that value and assertion is supposed to be checking that they're clear.