This commit is contained in:
Timur A. Fatkhullin
2025-06-15 22:49:02 +03:00
parent 4ebaac2dcb
commit 5a5854ccdd
7 changed files with 388 additions and 31 deletions

15
cxx/tests/mount.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "../mcc_mount.h"
#include "../mcc_mount_events_states.h"
int tests_mount(int, char**)
{
using namespace mcc;
using mount_t = MccMount<MccMountConfig<MccMountType::CROSSAXIS_TYPE>, MccMountTelemetry>;
mount_t mount(MccMountStateIDLE<mount_t>{});
return 0;
}