Jonas Vautherin

Results 31 issues of Jonas Vautherin

[This](https://github.com/leetal/ios-cmake/blob/master/ios.toolchain.cmake#L147-L150) breaks my build: ```cmake if(DEFINED ENV{_IOS_TOOLCHAIN_HAS_RUN}) return() endif() set(ENV{_IOS_TOOLCHAIN_HAS_RUN} true) ``` Where the previous version is fine: ```cmake if(IOS_TOOLCHAIN_HAS_RUN) return() endif(IOS_TOOLCHAIN_HAS_RUN) set(IOS_TOOLCHAIN_HAS_RUN true) ``` I believe that's because it...

bug

Not sure I understand how to use https://github.com/github/roadmap/issues/507, but just wanted to run something, out of curiosity :innocent:

enhancement

- [x] Fedora fails because it is missing perl dependencies - [x] Manylinux seems to fail for the same reason as Fedora (do we actually still need manylinux?) - [x]...

I got a request to expose the `serial_number` of [SMART_BATTERY_INFO](https://mavlink.io/en/messages/common.html#SMART_BATTERY_INFO). From the specs, I read: > Smart Battery information (static/infrequent update). Use for updates from: smart battery to flight stack,...

I think that the command sender is getting in a weird state :sweat_smile:: ```[02:19:21|Warn ] Dropping command 2505 that is already being sent (mavlink_command_sender.cpp:111) [02:19:21|Warn ] Dropping command 2504 that...

Currently, at the C++ level, streams like [`position_async()`](https://github.com/Dronecode/DronecodeSDK/blob/develop/plugins/telemetry/include/plugins/telemetry/telemetry.h#L514) register one unique callback. This means that one cannot register two callbacks: the second call will erase the previous one. I believe...

enhancement

Implementing the idea of a `realtime stream`, as discussed in #976. ~The dynamic capabilities part and the tests are missing, but I figured that I would already ask for review...

I am trying to add support for `List`. In my tests, I want to create `AnyList` objects that I can later `set(index, object)` into my `List`. But I can't seem...

This seems like a pretty cool project! I am not very familiar with WiFi Direct, but my understanding was that Apple does not support it (as in: it will not...

enhancement
help wanted

__TL;DR: The whole point is the new API in [ez-rpc.h](https://github.com/capnproto/capnproto/compare/master...JonasVautherin:capnproto:ezrpc-arbitrary-asynciostream?expand=1#diff-548cb29d954120f68618ee55c221ea96b5d73c29a86eefdc1bb2360fba0e851d), check it first, no need to review the rest if the API is bad :+1:.__ This is an exploration around...