Rob Bocchino
Rob Bocchino
As I revise the RPI demo, I'm encountering the following behavior: if I put in flight-like assertions that driver initialization is OK, then the app crashes on the Mac. I...
If an FPP error occurs during `fprime-util generate`, sometimes the F Prime tools don't fully report the error information provided by the FPP tools. For example, here is a manufactured...
This way we can replace the char array here https://github.com/nasa/fprime/blob/20d3a6a7327c83c07c15ea3b1b42b77dc5046a79/Fw/Obj/ObjBase.hpp#L82 with an `Fw::ObjectName` object. That will have the following benefits: 1. Avoid direct use of bare string arrays and `snprintf`....
Copied from https://github.com/fprime-community/fpp/issues/303, since this is a framework issue. Some combinations of settings of F Prime flags will cause the generated code to fail to compile. To assist the user,...
The undefined behavior sanitizer kills tests that use undefined behavior to drive off-nominal cases. For example, synthesizing an invalid On/Off command argument with the value 2 causes the test to...
`Fw::Buffer::getSerializeRepr` currently returns a reference into a serialize buffer stored as a member of `Fw::Buffer`. There are some issues with this: 1. When you call `getSerializeRepr`, you're not sure what...
@LeStarch and I have discussed the following issue with the path names of header files included from `config`: * In a typical project, many headers in `config` exist in two...