MISRA (originally an abbreviation of Motor Industry Software Reliability Association) is an organization which has published the coding guidelines called MISRA-C and MISRA-C++. Each document is a set of rules aiming to create a safer sub-set of the respective language.
Are there any open-source or free tools out there, that check the MISRA C compliance?
c standards misraOur organization has a required coding rule (without any explanation) that: if … else if constructs should be terminated with an …
c misraWhat can I do to avoid MISRA giving this error for the code below? I tried casting with (unit16_t). …
c misraI thought those terms where synonymous, but a note in MISRA regarding dead code indicates this to be wrong? What's …
standards standards-compliance misraI am working on embedded program and in certain cases if a condition is not meant, I would like to …
c++ c misraI am currently working on a project which requires the code to be Misra 2012 compliant. Throughout the project we have …
c misraMISRA 14.5 says continue statement must not be used. Can anyone explain the reason? Thank you.
c misra