Hello Pc lint reports an error in the QP Version check, which is autogenerated by the QM V4 #if ((QP_VERSION < 630) || (QP_VERSION != ((QP_RELEASE^4294967295U) % 0x3E8))) #error qpc version 6.3.0 or higher required #endif lint:960-> Violates MISRA 2004 Required Rule 10.1, Implicit conversion changes signedness, The problem comes from the "0x3E8" where an 'U' should be added, as well on the QP_VERSION and at the '630' Does anyone have an idea how the autogeneration of this line could be changed? I...