Send HEARTBEAT mesage from Godot

This commit is contained in:
Marek S. Łukasiewicz 2025-01-28 17:32:28 +01:00
parent 7890c90380
commit f46887d6cc
3 changed files with 47 additions and 1 deletions

View file

@ -14,6 +14,7 @@ env = SConscript("modules/godot-cpp/SConstruct")
# tweak this if you want to use different folders, or more folders, to store your source code in.
env.Append(CPPPATH=["src/"])
env.Append(CPPPATH=["include/"])
sources = Glob("src/*.cpp")
# Generated with local Godot installation
@ -48,5 +49,7 @@ else:
"project/bin/libmarshconnector{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
source=sources,
)
# Triggered a lot in MAVLink headers
env.Append(CXXFLAGS=["-Wno-address-of-packed-member"])
Default(library)