Tagged Questions

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
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 ...
2
votes
2answers
176 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 ...