safety-critical Questions
3
Solved
Coming from C/C++ background, I am aware of coding standards that apply for Safety Critical applications (like the classic trio Medical-Automotive-Aerospace) in the context of embedded systems , su...
Granddaddy asked 22/10, 2021 at 8:35
13
Solved
Our organization has a required coding rule (without any explanation) that:
if … else if constructs should be terminated with an else clause
Example 1:
if ( x < 0 )
{
x = 0;
} /* else n...
Wallachia asked 28/1, 2016 at 5:16
1
I'm in a safety critical embedded C project and there's a discussion about detecting memory corruptions (e.g. buffer overflows) in boolean variables. As everyone knows, in C, the "boolean" ty...
Gaia asked 18/5, 2020 at 14:4
3
Solved
We are ISO-13485 and do development for medical devices. We currently use the IAR certified compiler, but we are thinking to switch to gcc because it is cross platform and the build can be automate...
Elea asked 27/3, 2018 at 15:7
2
Solved
I started learning Ada for its potential use in an embedded device which is safety critical. So far, I'm really liking it. However, in my research on embedded programming, I came across the h...
Sommersommers asked 2/9, 2018 at 15:38
3
Solved
Cppcheck allows you to create your own rules files, but I don't know how much of cppcheck's functionality is exposed.
Is anyone working on a set that would enforce JSF or MISRA rules?
Arlana asked 3/3, 2013 at 17:8
2
I'm currently thinking about C++ in safety-critical software (DO-178C DAL-D) and definitions of a coding standard. I was looking at MISRA C++ which is again 10 years old and misses all the C++11…17...
Sculpture asked 5/7, 2018 at 6:24
1
Solved
Safety critical projects do not recommend any dynamic allocations or freeing allocated memory. Only during elaboration/initialization phase of the program execution, it is allowed.
I know most of...
Curate asked 14/4, 2016 at 8:49
1
Looking at C, C has good support for formal methods that can be used in-code(frama-c, VCC, verifast). C++ doesn't seem to have any comparable as far as I can tell.
What formal methods are availabl...
Halfbeak asked 22/7, 2014 at 23:54
5
How to get rid of MISRA violation on following statement
typedef unsigned char boolean;
boolean A, B;
A = !B;
Operand of logical ! operator is not an 'effectively Boolean'
expression. MISRA...
Haller asked 13/2, 2014 at 17:16
1
Solved
I'm trying to find any research/academic/journal papers/articles that analyze recent versions of Qt and Qt Creator.
Specifically, I'm trying to evaluate Qt from a real-time safety critical perspe...
Silvertongued asked 20/3, 2012 at 21:16
1
Solved
I'm looking to locate a good resource (book or otherwise) on safety critical systems development techniques/methodologies, especially something that will cover both hardware and software . I ...
Peck asked 17/9, 2008 at 10:29
1
© 2022 - 2024 — McMap. All rights reserved.