Ho1lowvv
(Aleksanddr)
May 18, 2025, 10:59am
1
Hello, I need to make packet’s in Matlab for ardupilot on MAVlink 2 protocol, how to calculate CRC and CRC_Extra for this packet’s? Where I can see documentation and examples for this?
copilot
(JaSw)
May 18, 2025, 2:47pm
2
Have you looked at the source code
#pragma once
#if defined(MAVLINK_USE_CXX_NAMESPACE)
namespace mavlink {
#elif defined(__cplusplus)
extern "C" {
#endif
// Visual Studio versions before 2010 don't have stdint.h, so we just error out.
#if (defined _MSC_VER) && (_MSC_VER < 1600)
#error "The C-MAVLink implementation requires Visual Studio 2010 or greater"
#endif
#include <stdint.h>
/**
*
* CALCULATE THE CHECKSUM
*
*/
This file has been truncated. show original
Ho1lowvv
(Aleksanddr)
May 18, 2025, 3:00pm
3
Yes, but this don’t help me))