Main MRPT website > C++ reference for MRPT 1.9.9
abs_rxtx.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://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 "rptypes.h"
37 
38 namespace rp
39 {
40 namespace hal
41 {
43 {
44  public:
45  enum
46  {
47  ANS_OK = 0,
50  };
51 
52  static serial_rxtx* CreateRxTx();
53  static void ReleaseRxTx(serial_rxtx*);
54 
56  virtual ~serial_rxtx() {}
57  virtual void flush(_u32 flags) = 0;
58 
59  virtual bool bind(const char* portname, _u32 baudrate, _u32 flags = 0) = 0;
60  virtual bool open() = 0;
61  virtual void close() = 0;
62 
63  virtual int waitfordata(
64  size_t data_count, _u32 timeout = -1,
65  size_t* returned_size = nullptr) = 0;
66 
67  virtual int senddata(const unsigned char* data, size_t size) = 0;
68  virtual int recvdata(unsigned char* data, size_t size) = 0;
69 
70  virtual int waitforsent(
71  _u32 timeout = -1, size_t* returned_size = nullptr) = 0;
72  virtual int waitforrecv(
73  _u32 timeout = -1, size_t* returned_size = nullptr) = 0;
74 
75  virtual size_t rxqueue_count() = 0;
76 
77  virtual void setDTR() = 0;
78  virtual void clearDTR() = 0;
79 
80  virtual bool isOpened() { return _is_serial_opened; }
81  protected:
82  volatile bool _is_serial_opened;
83 };
84 }
85 }
virtual int recvdata(unsigned char *data, size_t size)=0
virtual bool bind(const char *portname, _u32 baudrate, _u32 flags=0)=0
virtual int waitforrecv(_u32 timeout=-1, size_t *returned_size=nullptr)=0
virtual int waitforsent(_u32 timeout=-1, size_t *returned_size=nullptr)=0
virtual bool isOpened()
Definition: abs_rxtx.h:80
virtual void setDTR()=0
virtual int senddata(const unsigned char *data, size_t size)=0
static serial_rxtx * CreateRxTx()
static void ReleaseRxTx(serial_rxtx *)
volatile bool _is_serial_opened
Definition: abs_rxtx.h:82
virtual bool open()=0
virtual void close()=0
virtual void clearDTR()=0
virtual ~serial_rxtx()
Definition: abs_rxtx.h:56
uint32_t _u32
Definition: rptypes.h:66
virtual void flush(_u32 flags)=0
GLsizeiptr size
Definition: glext.h:3923
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:3546
virtual int waitfordata(size_t data_count, _u32 timeout=-1, size_t *returned_size=nullptr)=0
virtual size_t rxqueue_count()=0



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019