feat: OSerialBus
This commit is contained in:
Executable
+60
@@ -0,0 +1,60 @@
|
|||||||
|
# -------------------------
|
||||||
|
# Visual Studio / MSBuild
|
||||||
|
# -------------------------
|
||||||
|
.vs/
|
||||||
|
*.VC.db
|
||||||
|
*.VC.opendb
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
|
# User-spezifische Dateien
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# Build-Verzeichnisse
|
||||||
|
Debug/
|
||||||
|
DebugPublic/
|
||||||
|
Release/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
Build/
|
||||||
|
Bin/
|
||||||
|
Obj/
|
||||||
|
Out/
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
CMakeFiles/
|
||||||
|
CMakeCache.txt
|
||||||
|
cmake_install.cmake
|
||||||
|
*.cmake
|
||||||
|
out/
|
||||||
|
|
||||||
|
# Compilierte Artefakte
|
||||||
|
*.obj
|
||||||
|
*.pdb
|
||||||
|
*.idb
|
||||||
|
*.ilk
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
*.lib
|
||||||
|
*.exp
|
||||||
|
*.iobj
|
||||||
|
*.ipdb
|
||||||
|
|
||||||
|
# Präkompilierte Header
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Log- und Temp-Dateien
|
||||||
|
*.log
|
||||||
|
*.tlog
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# Visual Studio Einstellungen
|
||||||
|
*.vcxproj.user
|
||||||
|
|
||||||
|
# NuGet (falls genutzt)
|
||||||
|
packages/
|
||||||
|
|
||||||
|
# Crash Dumps
|
||||||
|
*.dmp
|
||||||
Executable
+31
@@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.33027.164
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MotionCore", "MotionCore\MotionCore.vcxproj", "{D095587F-5B2C-4701-8559-FD1769A78582}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Debug|x64.Build.0 = Debug|x64
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Debug|x86.ActiveCfg = Debug|Win32
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Debug|x86.Build.0 = Debug|Win32
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Release|x64.Build.0 = Release|x64
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Release|x86.ActiveCfg = Release|Win32
|
||||||
|
{D095587F-5B2C-4701-8559-FD1769A78582}.Release|x86.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {E4B52E92-E76E-4E0D-BFA6-8DE6CBD924FC}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
Executable
+5
@@ -0,0 +1,5 @@
|
|||||||
|
#include "MainLoop.h"
|
||||||
|
|
||||||
|
void MainLoop::run()
|
||||||
|
{
|
||||||
|
}
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
class MainLoop
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
void run();
|
||||||
|
};
|
||||||
Executable
+153
@@ -0,0 +1,153 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>16.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{d095587f-5b2c-4701-8559-fd1769a78582}</ProjectGuid>
|
||||||
|
<RootNamespace>MotionCore</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions);WINDOWS</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions);WINDOWS</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions);WINDOWS</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions);WINDOWS</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="main.cpp" />
|
||||||
|
<ClCompile Include="MainLoop.cpp" />
|
||||||
|
<ClCompile Include="OSerialBus.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="MainLoop.h" />
|
||||||
|
<ClInclude Include="OSerialBus.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
Executable
+36
@@ -0,0 +1,36 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Quelldateien">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Headerdateien">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Ressourcendateien">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="main.cpp">
|
||||||
|
<Filter>Quelldateien</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MainLoop.cpp">
|
||||||
|
<Filter>Quelldateien</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="OSerialBus.cpp">
|
||||||
|
<Filter>Quelldateien</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="MainLoop.h">
|
||||||
|
<Filter>Headerdateien</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="OSerialBus.h">
|
||||||
|
<Filter>Headerdateien</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
Executable
+110
@@ -0,0 +1,110 @@
|
|||||||
|
#include "OSerialBus.h"
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
#ifdef WINDOWS
|
||||||
|
OSerialBus::OSerialBus(const std::wstring& comPort, int baudRate):
|
||||||
|
comPort(comPort),
|
||||||
|
baudRate(baudRate)
|
||||||
|
{
|
||||||
|
serialHandle = CreateFile(normalizePort(comPort).c_str(), GENERIC_WRITE, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
|
||||||
|
if (!serialHandle) {
|
||||||
|
std::wcerr << L"Unable to open serial port file " << normalizePort(comPort) << L"!" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DCB serialParams = { 0 };
|
||||||
|
serialParams.DCBlength = sizeof(serialParams);
|
||||||
|
|
||||||
|
if (!GetCommState(serialHandle, &serialParams)) {
|
||||||
|
std::wcerr << L"Unable to get comm state of port " << normalizePort(comPort) << L"! Is the port busy?" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
serialParams.BaudRate = baudRate;
|
||||||
|
|
||||||
|
if (!SetCommState(serialHandle, &serialParams)) {
|
||||||
|
std::wcerr << L"Unable to set comm state of port " << normalizePort(comPort) << L"! Is the port busy?" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
COMMTIMEOUTS timeouts = { 0 };
|
||||||
|
timeouts.ReadIntervalTimeout = 50;
|
||||||
|
timeouts.ReadTotalTimeoutConstant = 50;
|
||||||
|
timeouts.ReadTotalTimeoutMultiplier = 50;
|
||||||
|
timeouts.WriteTotalTimeoutConstant = 50;
|
||||||
|
timeouts.WriteTotalTimeoutMultiplier = 10;
|
||||||
|
|
||||||
|
if (!SetCommTimeouts(serialHandle, &timeouts)) {
|
||||||
|
std::wcerr << L"Unable to set comm timeouts of port " << normalizePort(comPort) << L"! Is the port busy?" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
open = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OSerialBus::isOpen() const
|
||||||
|
{
|
||||||
|
return open;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OSerialBus::close()
|
||||||
|
{
|
||||||
|
return CloseHandle(serialHandle);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OSerialBus::send(const std::string& line)
|
||||||
|
{
|
||||||
|
// Important: this relies on chartype of line being 1 byte long!
|
||||||
|
const char* data = line.data();
|
||||||
|
std::size_t remaining = line.size();
|
||||||
|
|
||||||
|
while (remaining > 0) {
|
||||||
|
DWORD bytesWritten = 0;
|
||||||
|
|
||||||
|
if (!WriteFile(serialHandle, data, (DWORD)remaining, &bytesWritten, nullptr)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (bytesWritten == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
data += bytesWritten;
|
||||||
|
remaining -= bytesWritten;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OSerialBus::sendl(const std::string& line)
|
||||||
|
{
|
||||||
|
if (!send(line)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return send("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
int OSerialBus::getBaudRate() const
|
||||||
|
{
|
||||||
|
return baudRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
const std::wstring& OSerialBus::getComPort() const
|
||||||
|
{
|
||||||
|
return comPort;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::wstring OSerialBus::normalizePort(const std::wstring& port)
|
||||||
|
{
|
||||||
|
// If port string already includes prefix, return as-is
|
||||||
|
if (port == L"\\\\.\\") {
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the first 3 chars in the portstring are COM, prefix the prefix
|
||||||
|
if (_wcsnicmp(port.c_str(), L"COM", 3) == 0) {
|
||||||
|
return std::wstring(L"\\\\.\\") + port;
|
||||||
|
}
|
||||||
|
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
Executable
+27
@@ -0,0 +1,27 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <windows.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
class OSerialBus
|
||||||
|
{
|
||||||
|
#ifdef WINDOWS
|
||||||
|
public:
|
||||||
|
OSerialBus(const std::wstring& comPort, int baudRate = 9600);
|
||||||
|
|
||||||
|
bool isOpen() const;
|
||||||
|
bool close();
|
||||||
|
bool send(const std::string& line);
|
||||||
|
bool sendl(const std::string& line);
|
||||||
|
|
||||||
|
int getBaudRate() const;
|
||||||
|
const std::wstring& getComPort() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
static std::wstring normalizePort(const std::wstring& port);
|
||||||
|
|
||||||
|
const std::wstring& comPort;
|
||||||
|
const int baudRate = 0;
|
||||||
|
HANDLE serialHandle;
|
||||||
|
bool open = false;
|
||||||
|
#endif // WINDOWS
|
||||||
|
};
|
||||||
Executable
+18
@@ -0,0 +1,18 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include "MainLoop.h"
|
||||||
|
#include "OSerialBus.h"
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
OSerialBus bus(L"COM4");
|
||||||
|
if (!bus.isOpen()) {
|
||||||
|
std::cerr << "Serial bus is not open! Is the COM port busy?" << std::endl;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
bus.sendl("MA 1 120");
|
||||||
|
|
||||||
|
bus.close();
|
||||||
|
|
||||||
|
MainLoop mainloop;
|
||||||
|
mainloop.run();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user