M Starch
M Starch
@SterlingPeet here is my write-up with advice for memory constrain platforms. Any help you can give me in fleshing out this guide would be appreciated. https://github.com/LeStarch/fprime/wiki/F%C2%B4-on-Constrained-Memory-Devices
Glad I could help. I used that cmake file to build a few Arduino projects, but it fundamentally does not support ARM. Thus I wrote my own. I used the...
Interesting. I just replicated the error, but it seems you can provide that implementation, or compile via gnu++11
If we are going to fix this, we need to make sure the `for` connections for port arrays use non-hardcoded values. I often have to rewrite these methods by hand...
When you have an array port, it makes a for loop: ``` for (i = 0; i < 3; i++) { //connect port @ i } ``` However, instead of...
@timcanham would we be able to override this autocode? Occasionally we need to override it. e.g. for the hub unit tests, we create 2 hubs and cross-wire them together to...
@tiffany1618 this looks good. I will merge once CI is passing above!
@bocchino @tiffany1618 something is going on in the autocoder causing the crash. It seems that something in an autocoder is overloading itself? Can one of you look into this and...
```c++ In file included from /home/runner/work/fprime/fprime/build-fprime-automatic-native/F-Prime/Svc/ComQueue/ComQueueComponentAc.hpp:37, from /home/runner/work/fprime/fprime/Svc/ComQueue/ComQueue.hpp:12, from /home/runner/work/fprime/fprime/Svc/ComQueue/ComQueue.cpp:8: /home/runner/work/fprime/fprime/build-fprime-automatic-native/F-Prime/Svc/ComQueue/BuffQueueDepthArrayAc.hpp:63:7: error: ‘Svc::BuffQueueDepth::BuffQueueDepth(const ElementType&)’ cannot be overloaded with ‘Svc::BuffQueueDepth::BuffQueueDepth(const ElementType&)’ 63 | BuffQueueDepth( | ^~~~~~~~~~~~~~ /home/runner/work/fprime/fprime/build-fprime-automatic-native/F-Prime/Svc/ComQueue/BuffQueueDepthArrayAc.hpp:58:7: note: previous declaration ‘Svc::BuffQueueDepth::BuffQueueDepth(const...
It looks like we are getting a duplicate function definition in the header.