Formatting, add remote calling to c library

This commit is contained in:
2026-02-18 09:18:26 -05:00
parent 0088a9070b
commit 376b0b5285
49 changed files with 1915 additions and 1593 deletions

View File

@@ -2,32 +2,32 @@
#include "flatbuffers/SensorMessageBuilder.h"
double Hub::get_position() {
// no-op
return 0;
// no-op
return 0;
}
std::string Hub::get_text() {
// no-op
return "";
// no-op
return "";
}
void Hub::actuate(double /* position */) {
// no-op
// no-op
}
void Hub::actuate(double /* x */, double /* y */) {
// no-op
// no-op
}
void Hub::actuate(const std::string &text) {
// no-op
// no-op
}
std::vector<uint8_t> Hub::get_actuation_message() {
// no-op
return {};
// no-op
return {};
}
void Hub::update_sensor_data(const Flatbuffers::sensor_value & /* value */) {
// no-op
// no-op
}