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.

TM4C1290NCPDT: DFU library bug

Part Number: TM4C1290NCPDT

TivaWare version 2.1.4.178  There is a bug in TivaWare\tools\lmdfu\lmdfu.cpp on line 1775

if(!(pState->ucDFUAttributes && DFU_ATTR_MANIFEST_TOLERANT))

The use of a logical and makes no sense here, it probably was intended to be a bitwise and.

if(!(pState->ucDFUAttributes & DFU_ATTR_MANIFEST_TOLERANT))

I have not done code coverage to see when this line is called and what effect it has, but wanted someone at TI to know about it.