net_serial.h
Go to the documentation of this file.
00001 /*
00002  *  RPLIDAR SDK
00003  *
00004  *  Copyright (c) 2009 - 2014 RoboPeak Team
00005  *  http://www.robopeak.com
00006  *  Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd.
00007  *  http://www.slamtec.com
00008  *
00009  */
00010 /*
00011  * Redistribution and use in source and binary forms, with or without
00012  * modification, are permitted provided that the following conditions are met:
00013  *
00014  * 1. Redistributions of source code must retain the above copyright notice,
00015  *    this list of conditions and the following disclaimer.
00016  *
00017  * 2. Redistributions in binary form must reproduce the above copyright notice,
00018  *    this list of conditions and the following disclaimer in the documentation
00019  *    and/or other materials provided with the distribution.
00020  *
00021  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00022  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
00023  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00024  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
00025  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00026  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00027  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
00028  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
00029  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
00030  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
00031  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00032  *
00033  */
00034 
00035 #pragma once
00036 
00037 #include "hal/abs_rxtx.h"
00038 
00039 namespace rp{ namespace arch{ namespace net{
00040 
00041 class raw_serial : public rp::hal::serial_rxtx
00042 {
00043 public:
00044     enum{
00045         SERIAL_RX_BUFFER_SIZE = 512,
00046         SERIAL_TX_BUFFER_SIZE = 128,
00047         SERIAL_RX_TIMEOUT     = 2000,
00048         SERIAL_TX_TIMEOUT     = 2000,
00049     };
00050 
00051     raw_serial();
00052     virtual ~raw_serial();
00053     virtual bool bind(const char * portname, _u32 baudrate, _u32 flags = 0);
00054     virtual bool open();
00055     virtual void close();
00056     virtual void flush( _u32 flags);
00057     
00058     virtual int waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL);
00059 
00060     virtual int senddata(const unsigned char * data, size_t size);
00061     virtual int recvdata(unsigned char * data, size_t size);
00062 
00063     virtual int waitforsent(_u32 timeout = -1, size_t * returned_size = NULL);
00064     virtual int waitforrecv(_u32 timeout = -1, size_t * returned_size = NULL);
00065 
00066     virtual size_t rxqueue_count();
00067 
00068     virtual void setDTR();
00069     virtual void clearDTR();
00070 
00071 protected:
00072     bool open(const char * portname, _u32 baudrate, _u32 flags);
00073     void _init();
00074 
00075     char _portName[20];
00076     uint32_t _baudrate;
00077     uint32_t _flags;
00078 
00079     OVERLAPPED _ro, _wo;
00080     OVERLAPPED _wait_o;
00081     volatile HANDLE _serial_handle;
00082     DCB _dcb;
00083     COMMTIMEOUTS _co;
00084 };
00085 
00086 }}}


rplidar_ros
Author(s):
autogenerated on Mon Mar 18 2019 02:34:23