Works now with Windows Visual Studio C++ too
[owTools.git] / src / owTMEXWIN.cpp
diff --git a/src/owTMEXWIN.cpp b/src/owTMEXWIN.cpp
new file mode 100644 (file)
index 0000000..6905165
--- /dev/null
@@ -0,0 +1,122 @@
+// Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de\r
+// All rights reserved.\r
+//\r
+// Redistribution and use in source and binary forms, with or without\r
+// modification, are permitted provided that the following conditions are\r
+// met:\r
+//\r
+//  * Redistributions of source code must retain the above copyright\r
+//    notice, this list of conditions and the following disclaimer.\r
+//  * Redistributions in binary form must reproduce the above copyright\r
+//    notice, this list of conditions and the following disclaimer in the\r
+//    documentation and/or other materials provided with the\r
+//    distribution.\r
+//  * All advertising materials mentioning features or use of this\r
+//    software must display the following acknowledgement: This product\r
+//    includes software developed by tm3d.de and its contributors.\r
+//  * Neither the name of tm3d.de nor the names of its contributors may\r
+//    be used to endorse or promote products derived from this software\r
+//    without specific prior written permission.\r
+//\r
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
+\r
+#pragma once\r
+\r
+       \r
+#include <ownet.h>\r
+\r
+#include <atlstr.h>\r
+\r
+#include <stdio.h>\r
+#include "owTMEXWIN.h"\r
+\r
+\r
+int owTMEXWIN::InitAdapter(std::string s) {\r
+       // resu = owi.InitAdapter("{1,6}");\r
+\r
+       //  int resu = owi.InitAdapter("{4,5}");\r
+       char hs[100];\r
+       sprintf_s(hs, 100, "%s", s.c_str());\r
+       portnum = owAcquireEx(hs);\r
+       if (portnum > -1) {\r
+               owSpeed(portnum, 2);\r
+               return 1;\r
+       }\r
+       return 0;       \r
+}\r
+\r
+\r
+int owTMEXWIN::owFirst() {\r
+       uchar SNum[8];\r
+       int res=owFirst_(portnum, TRUE, FALSE);\r
+       if (res) {\r
+               owSerialNum(portnum, &SNum[0], TRUE);\r
+               for (int i = 0; i<8; i++) ROM_NO[i] = SNum[i];\r
+       }\r
+       return res;\r
+\r
+}\r
+int owTMEXWIN::owNext() {\r
+       uchar SNum[8];\r
+       int res = owNext_(portnum, TRUE, FALSE);\r
+       if (res) {\r
+               owSerialNum(portnum, &SNum[0], TRUE);\r
+               for (int i = 0; i<8; i++) ROM_NO[i] = SNum[i];\r
+       }\r
+       return res;\r
+\r
+}\r
+\r
+\r
+void owTMEXWIN::ReleaseAdapter() {\r
+       owRelease(portnum);\r
+}\r
+\r
+\r
+int owTMEXWIN::Reset() {\r
+       return owTouchReset(portnum);\r
+}\r
+\r
+int owTMEXWIN::MatchRom(snum_t snum) {\r
+       owSerialNum(portnum, snum.byte, FALSE);\r
+       return owAccess(portnum);\r
+}\r
+uint8_t owTMEXWIN::sendrecivByte(uint8_t byte) {\r
+       return owTouchByte(portnum, byte);\r
+                       \r
+}\r
+uint8_t owTMEXWIN::sendrecivBit(uint8_t bit) {\r
+       return owTouchBit(portnum, bit);\r
+       \r
+}\r
+\r
+int owTMEXWIN::Communicate(std::vector<uint8_t> *data, int scount, int rcount) {\r
+       int i = 0;\r
+       uint8_t buf[400];\r
+       data->resize(scount);\r
+       for (uint8_t v : *data) {\r
+               buf[i++] = v;\r
+       }\r
+       for (int j = 0; j < rcount; j++) {\r
+               buf[i++] = 0xFF;\r
+       }\r
+       int ret = owBlock(portnum, FALSE, buf, scount + rcount);\r
+       if (ret) {\r
+               for (int j = 0; j < rcount; j++) {\r
+                       data->push_back(buf[scount + j]);\r
+               }\r
+       }\r
+       return ret;\r
+\r
+}\r
+       \r