2019-09-27 08:17:52 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
base class for serially-attached simulated devices
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-28 08:32:57 -03:00
|
|
|
#include <unistd.h>
|
2019-09-27 08:17:52 -03:00
|
|
|
|
|
|
|
namespace SITL {
|
|
|
|
|
|
|
|
class SerialDevice {
|
|
|
|
public:
|
|
|
|
|
|
|
|
SerialDevice();
|
|
|
|
|
2019-09-28 08:33:39 -03:00
|
|
|
// return fd on which data from the device can be read
|
2019-09-27 08:17:52 -03:00
|
|
|
// to the device can be written
|
2021-02-01 12:37:57 -04:00
|
|
|
int fd() const { return fd_their_end; }
|
2019-09-28 08:33:39 -03:00
|
|
|
// return fd on which data to the device can be written
|
2021-02-01 12:37:57 -04:00
|
|
|
int write_fd() const { return read_fd_their_end; }
|
2019-09-28 08:33:39 -03:00
|
|
|
|
2021-02-01 12:37:57 -04:00
|
|
|
ssize_t read_from_autopilot(char *buffer, size_t size) const;
|
2021-10-16 00:10:40 -03:00
|
|
|
virtual ssize_t write_to_autopilot(const char *buffer, size_t size) const;
|
2019-09-27 08:17:52 -03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2021-07-30 07:17:35 -03:00
|
|
|
class SIM *_sitl;
|
2019-09-27 08:17:52 -03:00
|
|
|
|
|
|
|
int fd_their_end;
|
|
|
|
int fd_my_end;
|
|
|
|
|
2019-09-28 08:33:39 -03:00
|
|
|
int read_fd_their_end;
|
|
|
|
int read_fd_my_end;
|
|
|
|
|
2019-09-27 08:17:52 -03:00
|
|
|
bool init_sitl_pointer();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|