gpt4 book ai didi

c++ - Microsoft Visual C++ 2010 和 Arduino UNO 通过 USB 之间的串行通信

转载 作者:行者123 更新时间:2023-11-28 00:12:17 25 4
gpt4 key购买 nike

我需要通过 USB 在 Microsoft Windows Visual C++ 2010 和 Arduino 微 Controller 之间建立串行通信。运动跟踪算法产生 X 和 Y 坐标,需要将其发送到 Arduino,后者控制两个平移和倾斜伺服系统。

我是最后一年的机械工程专业学生,对 Microsoft Visual Studios 和 C++ 的经验很少,所以请耐心等待,如果我的术语不正确,请原谅我...

我在多个论坛上进行了广泛的研究,但找不到针对我的问题的答案:

我遇到的所有解决方案都只支持在 Visual Studios 中创建普通/“空”项目时的通信。可以在此处找到示例:Serial communication (for Arduino) using Visual Studio 2010 and C

当我尝试在“Win32 控制台应用程序”项目中调试相同的代码体(在“空”项目中成功运行)时,出现以下错误:

错误 C2065:“LcommPort”:未声明的标识符error C2228: '.c_str' 的左边必须有类/结构/union

不幸的是,我不能简单地将我的项目从“Win32 控制台应用程序”更改为普通的“空”项目,因为运动跟踪算法需要使用控制台应用程序类型的项目。

我使用的代码主体如下(这是一个简化的测试源文件,用于确认 MS Visual 和 Arduino 之间是否建立了通信,其中 LED 开启和关闭的频率通过串行连接):

    #include <Windows.h>
#include "ArduinoSerial.h"
#include "StdAfx.h"

int main() {
try {
ArduinoSerial arduino( "COM3" );

Sleep( 2000 ); // Initial wait to allow Arduino to boot after reset

char buffer[] = { 25, 100 };
arduino.Write( buffer, 2 ); // Send on/off delays to Arduino (if return value is 0, something went wrong)
}
catch ( const ArduinoSerialException &e ) {
MessageBoxA( NULL, e.what(), "ERROR", MB_ICONERROR | MB_OK );
}

return 0;
}

在代码的第 9 行找到相应的错误源代码:

#include <algorithm>
#include <sstream>
#include <Windows.h>
#include "stdafx.h"

#include "ArduinoSerial.h"

ArduinoSerial::ArduinoSerial( const std::string commPort ) {
comm = CreateFile( TEXT( commPort.c_str() ),
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
0,
NULL );

if ( comm == INVALID_HANDLE_VALUE ) {
std::ostringstream error;
error << "Unable to acquire handle for " << commPort << ": ";

DWORD lastError = GetLastError();

if ( lastError == ERROR_FILE_NOT_FOUND ) {
error << "Invalid port name";
}
else {
error << "Error: " << lastError;
}

throw ArduinoSerialException( error.str() );
}

DCB dcb;
SecureZeroMemory( &dcb, sizeof DCB );
dcb.DCBlength = sizeof DCB;
dcb.BaudRate = CBR_9600;
dcb.ByteSize = 8;
dcb.StopBits = ONESTOPBIT;
dcb.Parity = NOPARITY;
dcb.fDtrControl = DTR_CONTROL_ENABLE;

if ( !SetCommState( comm, &dcb ) ) {
CloseHandle( comm );

std::ostringstream error;
error << "Unable to set comm state: Error " << GetLastError();

throw ArduinoSerialException( error.str() );
}

PurgeComm( comm, PURGE_RXCLEAR | PURGE_TXCLEAR );
}

std::size_t ArduinoSerial::Read( char buffer[], const std::size_t size ) {
DWORD numBytesRead = 0;
BOOL success = ReadFile( comm, buffer, size, &numBytesRead, NULL );

if ( success ) {
return numBytesRead;
}
else {
return 0;
}
}

std::size_t ArduinoSerial::Write( char buffer[], const std::size_t size ) {
DWORD numBytesWritten = 0;
BOOL success = WriteFile( comm, buffer, size, &numBytesWritten, NULL );

if ( success ) {
return numBytesWritten;
}
else {
return 0;
}
}

ArduinoSerial::~ArduinoSerial() {
CloseHandle( comm );
}

ArduinoSerialException::ArduinoSerialException( const std::string message ) :
std::runtime_error( message ) {
}

非常感谢任何帮助或建议。

最佳答案

I am presented with the following errors:

error C2065: 'LcommPort' : undeclared identifier error C2228: left of '.c_str' must have class/struct/union

这段代码

 TEXT( commPort.c_str())

实际上变成了

 LcommPort.c_str()

这就是您会收到此编译器错误的原因。

你应该注意到 TEXT() 是一个用于字 rune 字的预处理器宏,根据你的项目是哪种模式(Unicode/ASCII)为它们添加前缀 L编译。它显然不适用于任何变量。

直接使用commPort.c_str(),或const std::wstring commPort

关于c++ - Microsoft Visual C++ 2010 和 Arduino UNO 通过 USB 之间的串行通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32385017/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com