MRPT  1.9.9
linux/net_serial.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2019, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 /*
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  * this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright notice,
17  * this list of conditions and the following disclaimer in the documentation
18  * and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
33 
34 #pragma once
35 
36 #include "hal/abs_rxtx.h"
37 
38 namespace rp::arch::net
39 {
41 {
42  public:
43  enum
44  {
47  };
48 
49  raw_serial();
50  ~raw_serial() override;
51  bool bind(
52  const char* portname, uint32_t baudrate, uint32_t flags = 0) override;
53  bool open() override;
54  void close() override;
55  void flush(_u32 flags) override;
56 
57  int waitfordata(
58  size_t data_count, _u32 timeout = -1,
59  size_t* returned_size = nullptr) override;
60 
61  int senddata(const unsigned char* data, size_t size) override;
62  int recvdata(unsigned char* data, size_t size) override;
63 
64  int waitforsent(
65  _u32 timeout = -1, size_t* returned_size = nullptr) override;
66  int waitforrecv(
67  _u32 timeout = -1, size_t* returned_size = nullptr) override;
68 
69  size_t rxqueue_count() override;
70 
71  void setDTR() override;
72  void clearDTR() override;
73 
75 
76  protected:
77  bool open(const char* portname, uint32_t baudrate, uint32_t flags = 0);
78  void _init();
79 
80  char _portName[200];
83 
84  int serial_fd{-1};
85 
88 };
89 } // namespace rp::arch::net
size_t rxqueue_count() override
bool bind(const char *portname, uint32_t baudrate, uint32_t flags=0) override
int waitforsent(_u32 timeout=-1, size_t *returned_size=nullptr) override
int waitfordata(size_t data_count, _u32 timeout=-1, size_t *returned_size=nullptr) override
int senddata(const unsigned char *data, size_t size) override
void flush(_u32 flags) override
uint32_t _u32
Definition: rptypes.h:69
int waitforrecv(_u32 timeout=-1, size_t *returned_size=nullptr) override
GLsizeiptr size
Definition: glext.h:3934
unsigned __int32 uint32_t
Definition: rptypes.h:50
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:3550
int recvdata(unsigned char *data, size_t size) override



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 8fe78517f Sun Jul 14 19:43:28 2019 +0200 at lun oct 28 02:10:00 CET 2019