SJ

Results 222 comments of SJ

Rough CMake is ``` if (APPLE) find_package(JNI REQUIRED) find_package(SWIG REQUIRED) include(${SWIG_USE_FILE}) include_directories(${JAVA_INCLUDE_PATH}) set_property(SOURCE SeePlusPlus.i PROPERTY CPLUSPLUS ON) swig_add_library(SeePlusPlus_Wrapper LANGUAGE java SOURCES SeePlusPlus.i) swig_link_libraries(SeePlusPlus_Wrapper SeePlusPlus) add_library(protobuf-lite SHARED IMPORTED) set_target_properties(protobuf-lite PROPERTIES IMPORTED_LOCATION...

Actually, it turns out that no, using that CTYPE doesn't work - which has me all kinds of surprised. I wasn't expecting it to fail. I've tried setting both LC_CTYPE...

Thanks for the quick reply @PetteriAimonen In my case, it's not padding, it's the underlying data that goes into the `data` field, and I don't want to exceed the flash...

Ah, right, sorry, I meant inside of the .options file to get the max size of a field - and use it as the max_size of another field. I'll keep...

In case anyone else runs into this issue: In the meantime, I've just been using a compile-time assert to ensure I don't accidentally re-generate and compile with incorrect message sizes.

I haven't quite solved the issue as I've listed it, but a short term workaround that I mentioned earlier: ```c static_assert(FlashBlock_size

I'm also investigating Vue binding for React: https://github.com/alkin/vue-react https://github.com/akxcv/vuera No success so far, but it might be more maintainable since the react office repo is maintained well and documented (at...

I agree that it's not a good long term strategy because of total library size, and maybe performance issues (I assume there will be some hit, but there aren't any...

As per issue #16 - Need to figure out what the preferred error mechanism is. Right now, have a hook for Exceptions (of some sort), but that might not be...

Hey @simmerz that's a good idea. I've been trying to think of a clean way to expose some Android-specific functionality, while not just re-implementing the whole API. One idea is...