TivaWare version 2.1.4.178 There is a bug in TivaWare\tools\lmdfu\lmdfu.cpp on line 1775if(!(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.