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 ...
3
votes
2answers
75 views

MISRA C:2004, error with bit shifting

I'm using IAR Workbench compiler with MISRA C:2004 checking on. The fragment is: #define UNS_32 unsigned int UNS_32 arg = 3U; UNS_32 converted_arg = (UNS_32) arg; /* Error line --> */ UNS_32 ...
2
votes
3answers
209 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
377 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 ...