A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

tymict/icu-platform Private

[참조 MVP] ICU 실행 플랫폼 — 센서 프레임과 A-SW 목표값을 ICU 액추에이터 명령 봉투로 변환합니다.

https://git.agrithing.ai/tymict/icu-platform.git
6 commits
1 items · main
·/ tests/component_test.cpp
text · 232 B · a850f34 Download
#include "component.hpp"#include <cassert>int main() { const auto command = asw::make_command(0.8, 1.5, 0.55, 4, true); assert(command.accepted); assert(command.steering_rad == 0.55); assert(command.speed_mps == 1.5); return 0; }