Simon Hancock
Simon Hancock
This sounds like it might be the same issue as #1862, which was cross-posted to https://github.com/ArduPilot/pymavlink/issues/701, as generators are part of pymavlink module. Reading those previous issues, it seems that...
@rotu It looked from the screenshot in https://github.com/mavlink/mavlink/issues/2105 that you are on Mac, right? I assume you can see negative lat/lon values ok?!
Ok thanks for checking that.... Very odd, as it works fine on Linux (Wireshark 4.2.2 + pymavlink master). Not sure if its a regression or always been like that with...
Good spot - yes that looks like it could be the culprit! If I am following it correctly, the incoming number gets cast to an uint32, then this is passed...
I had a crack at a quick workaround/fix on the pymavlink side in this branch: https://github.com/shancock884/pymavlink/tree/mac-neg-int-fix It removes the 'value' arg from calls to add_le, unless there is an associated...
I agree, the number in the code looks wrong. One thought: if you put the call to datetime into the timestamp_2019 function, then Python will end up re-running the code...
Hi @Winston1408, It seems that mavtest.py is not a part of the installed pymavlink package, but rather it exists locally within the examples directory alongside mavtester.py. I believe that replacing...
Update: Wireshark have fixed the issue in their master branch, so I suppose it will arrive in a release at some point this year. They were also able to propose...
In the current implementation of mavlogdump.py, you get a clear message if you try to specify multiple types when dumping to CSV: ``` $ mavlogdump.py --format=csv --types=UNIT,MULT ArduPlane-Soaring-00000045.BIN Need exactly...
If an enumeration is a bitmask, it is defined as such in the XML specification, so I think that this function is redundant and [line 302 of mavgen_swift.py](https://github.com/ArduPilot/pymavlink/blob/master/generator/mavgen_swift.py#L302) could be...