robomancer-or
robomancer-or
That sounds remarkably similar to what I was proposing above, just with more modularity. It also looks like there hasn't been much activity in 6 months. Is there a way...
Ok, I agree that that would get me the expected results, but it still seems wrong that calling a safe method called "set_bit" would change any other memory.
Lol, it's documented, and therefore a feature and definitely not a bug! I still challenge this design choice for several reasons, but I'm very new to the language, so if...
Oh, I'm sorry, I was trying to be playful. There's a somewhat widely known saying (at least in the US) that if it's documented it's a feature rather than a...
Yeah, it definitely wouldn't _compile_, but when I'm reading code I'm not JIT compiling it in my head, I glance at a thing and expect its meaning to be evident....
I'm not suggesting anything beyond what I said; it seems wrong that a function called `set_bit` would change any other part of memory (unless that bit has a functional purpose,...
That got it to build, but now `make install` tells me "-- Set runtime path of "/usr/local/bin/hidpp-list-devices" to "" ", and when I try to run it I get "hidpp-list-devices:...
Success! I found https://stackoverflow.com/questions/32469953/why-is-cmake-designed-so-that-it-removes-runtime-path-when-installing and added SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") to CMakeLists.txt right after `project(hidpp)` and rebuilt everything and the code can now run! As soon as my device comes...