Tagged Questions

MISRA is the "Motor Industry Software Reliability Association", which has published coding guidelines for C, called MISRA C:1998 (C1) and MISRA C:2004 (C2), and for C++, called MISRA C++:2008.

learn more… | top users | synonyms

7
votes
5answers
2k views

Does anyone follow the MISRA C Specification?

Can anyone share their experience in adopting the MISRA C specification in their software development process?
4
votes
1answer
153 views

Is There a Java Equivalent to MISRA C?

In some languages, there are rules/best practices/etc. that promote software safety, ensure expected runtime behavior, etc. Two that come to mind are MISRA for C/C++, and the Ravenscar profile for ...
4
votes
5answers
2k views

Misra standard for embedded software

Hi I have a requirement to make a large amount of code MISRA compliant. First question: Can somebody to give an estimation for passing well written code for embedded system based on experience. I ...
3
votes
2answers
88 views

Has anybody built a C-file for verifying the code-checking tools for MISRA-2004?

We are using PC-Lint for code-checking our sources for compliance with MISRA-2004. As this is a safety-relevant project and we're heading for a certificate by TUV, we need to show proof for our ...
2
votes
2answers
177 views

Why did Misra throw an error here?

What can I do to avoid Misra giving this error for the code below? I tried casting with (unit16_t). But then it didn't allow an explicit conversion. Illegal implicit conversion from underlying MISRA ...
1
vote
3answers
348 views

Casting a NULL pointer function argument resulted in violation of Misra Rule 11.3

I define a NULL_PTR as 0U Then call a function with this NULL_PTR as argument. read_some_data(2U, (uint8_t *const) NULL_PTR, (uint8_t *const) NULL_PTR); Called function prototype: int16_t ...