Timothy Canham
Timothy Canham
No problem - we can talk then. I am using CCS 8.3 and the compiler that comes with it - I was having issues with 9.0. I would recommend going...
It works, but it also works if you do this: ```c++ Fw::SerializeStatus stat = this->m_comBuffer.serialize(this->m_tlmPacket); FW_ASSERT(Fw::FW_SERIALIZE_OK == stat,static_cast(stat)); p_entry->updated = false; this->PktSend_out(0,this->m_comBuffer,0); ``` It would be clearer to do it...
So to understand the current capability, I can get the current CI build (minus `clang-tidy`) by doing `fprime-util check` from the root of the fprime repo? How does one run...
How about a generic converter plug-in concept? Then the user could write their own. The polynomial converter could be one of the standard ones. Maybe: ```xml ``` The `args` could...
We should put some thought into where these live with respect to the proposal in #405 if the GDS will be maintained separately from the F Prime source tree, since...
Excellent idea. The question is the the format. Should we introduce yaml at this point, or should we use FPP or XML?
If we are going to do this effort, we should try to generate some shared constants so we can use them in the software and in the GDS, like command...
Huh - None of those files have explicit `new` and `delete` calls. Perhaps the C++ libraries carry an implicit dependency in the event they are created on the stack? Does...
There are components (e.g. `Svc::CmdSequencer`) that want a buffer of memory to perform their function. The user can select a size based on their needs and resources. We created a...
It's probably queued components as well since they create a queue too. If it's part of the porting layer, then the OS adaptation can remove the calls. That doesn't explain...