mirror of
https://github.com/okalachev/flix.git
synced 2025-07-27 09:39:33 +00:00
Minor updates
This commit is contained in:
parent
ce87234a51
commit
627233f862
@ -7,6 +7,7 @@
|
||||
|
||||
#include <cmath>
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/poll.h>
|
||||
|
@ -47,8 +47,8 @@ public:
|
||||
this->model = _parent;
|
||||
this->body = this->model->GetLink("body");
|
||||
this->imu = dynamic_pointer_cast<sensors::ImuSensor>(sensors::get_sensor(model->GetScopedName(true) + "::body::imu")); // default::flix::body::imu
|
||||
this->updateConnection = event::Events::ConnectWorldUpdateBegin(bind(&ModelFlix::OnUpdate, this));
|
||||
this->resetConnection = event::Events::ConnectWorldReset(bind(&ModelFlix::OnReset, this));
|
||||
this->updateConnection = event::Events::ConnectWorldUpdateBegin(std::bind(&ModelFlix::OnUpdate, this));
|
||||
this->resetConnection = event::Events::ConnectWorldReset(std::bind(&ModelFlix::OnReset, this));
|
||||
initNode();
|
||||
Serial.begin(0);
|
||||
gzmsg << "Flix plugin loaded" << endl;
|
||||
|
@ -4,10 +4,10 @@
|
||||
// Tool for conversion CSV log file to ULog format
|
||||
|
||||
#include <ulog_cpp/simple_writer.hpp>
|
||||
#include <rapidcsv.h>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <filesystem>
|
||||
#include "rapidcsv.h"
|
||||
|
||||
using std::vector;
|
||||
using std::string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user