David Zemon
David Zemon
I'm going to use this as some notes, as I investigate how this works. If I don't complete the full investigation of how it works right now, I will come...
Hello maintainers. Is there any way you could merge this in? I'd really like to switch back to using your upstream source rather than my forked version, but cannot until...
This is a CMake question and not a freeopcua question. I recommend reading about cross-compiling with CMake and how to use Toolchain files. If you're a Docker fan, this can...
Thank you so much, both for the edit and the quick response! Personally, I think this should be default behavior so I would be happy to submit this as a...
Trying to introduce Inversify into our instance of Spotify's Backstage and having an unfortunate time because Backstage seems to be pretty tightly coupled to Sucrase. I've made it work, but...
What version of the simple libraries are you using? I'll see if I can reproduce the issue with the version being pulled in by PropWare. Also, what branch of PropWare?
I'm able to build the attached project with the following size: ``` Code size = 19412 Total size = 25200 ``` If you run into the same error with the...
Well that sure is interesting isn't it? That one function was used all over the place in the demo program and didn't have any issues. I have it reproducing with...
Long story short: there are obviously multiple definitions of the function in the Simple library. I'm seeing drive_speed.c in libarlo and libabdrive360 as well as libabdrive's speed.c. The correct fix...
Have you tried [`PropWare::Runnable`](https://david.zemon.name/PropWare/api-develop/classPropWare_1_1Runnable.xhtml)? I think it is XMMC-compatible, but won't swear to it. However, if you want/need to use pthread, add this underneath `create_simple_executable(...)`: ``` target_link_libraries(${PROJECT_NAME} pthread) ``` Also,...