Timothy Canham
Timothy Canham
Can we anchor the path with an externally settable variable? This approach makes it easier to specify which version of the tools works. Something like: ``` #### # Raspberry PI...
You mentioned there were also asserts. Can you post them as well? I'm guessing there was a queue overflow.
At one point we had discussed the idea of flow control on interfaces that could support it, e.g. network. The network "radio" ACKs each uplinked file packet, and the ground...
`IntervalTimer` is an `Os` class. It's meant to provide a raw time for getting differences. On *nix, it uses the system clock, but on other platforms like VxWorks it uses...
Looking deeper, the old inline enums have had `%d` format specifiers, so that local text logs would print a decimal value to the screen. The GDS would detect this and...
@donwalkarsoham We haven't done a port yet to FreeRTOS. I think it would be great for more deeply embedded applications. It is in our plans to write a porting guide,...
Can you give me a little background as to how you would like to use F'?
Note that F` requires running its own build system to generate the code, so you won't be able to build through Code Composer. We have done that here at JPL...
There are a set of configuration files to navigate through. The can be a bit complicated, but they were set up that way to try and reuse settings across targets....
The next step is to write implementation classes for the OS classes in the `Os` directory. Specifically: `Task.hpp` `Queue.hpp` `Mutex.hpp` `IntervalTimer.hpp` `InterruptLock.hpp` The new files can be added to the...