Works now with Windows Visual Studio C++ too
[owTools.git] / src / owARDUINOInterface.h
1 // Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 //  * Redistributions of source code must retain the above copyright
9 //    notice, this list of conditions and the following disclaimer.
10 //  * Redistributions in binary form must reproduce the above copyright
11 //    notice, this list of conditions and the following disclaimer in the
12 //    documentation and/or other materials provided with the
13 //    distribution.
14 //  * All advertising materials mentioning features or use of this
15 //    software must display the following acknowledgement: This product
16 //    includes software developed by tm3d.de and its contributors.
17 //  * Neither the name of tm3d.de nor the names of its contributors may
18 //    be used to endorse or promote products derived from this software
19 //    without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33
34 #ifndef __OWARDUINOINTERFACES_H_
35 #define __OWARDUINOINTERFACES_H_
36
37 #include "owInterface.h"
38
39 class owARDUINOInterface:public owInterface{
40 protected: 
41 #ifdef LINUX
42         int fd;
43 #endif
44 #ifdef WIN
45         HANDLE fd;
46 #endif
47         int com_init;
48 public:
49         owARDUINOInterface():owInterface() {
50                 fd=0;
51                 com_init=0;
52         }
53         virtual int InitAdapter(uint8_t);
54         virtual int Reset();
55         virtual uint8_t sendrecivBit(uint8_t bit);
56         virtual uint8_t sendrecivByte(uint8_t byte);
57         virtual void ReleaseAdapter();
58         virtual int owFirst();
59         virtual int owNext();
60         virtual int Communicate(std::vector<uint8_t> *data, int scount, int rcount);
61
62
63 protected:
64         uint8_t ULevel; // current DS2480B 1-Wire Net level
65         uint8_t UBaud;  // current DS2480B baud rate
66         uint8_t UMode;  // current DS2480B command or data mode state
67         uint8_t USpeed; // current DS2480B 1-Wire Net communication speed
68         uint8_t UVersion; // current DS2480B version 
69 #ifdef LINUX
70         struct termios origterm;
71 #endif
72 #ifdef LINUX
73         int OpenCOM(uint8_t comnr);
74 #endif
75 #ifdef WIN
76         HANDLE OpenCOM(uint8_t comnr);
77 #endif
78
79         void CloseCOM();
80         void FlushCOM();
81         int  WriteCOM(int outlen, uint8_t *outbuf);
82         int ReadCOM(int inlen, uint8_t *inbuf);
83 //      void BreakCOM();
84
85         
86 };
87
88 #endif