- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以在一些 Arduino 代码中,我是 Serial.print
一些这样的数字 (var1=##,var2=##,var3=##
)。我有一个 C++ DLL,我正在制作它来获取此信息并将其解析为这样的变体数组 ("var1=",##.##,"var2=",##.##,"var3 =",##.##
) 将字符串部分存储为变体 BSTR,将 #
存储为变体 double 。这个变体数组来自 Excel,我的 C++ DLL 的目的是允许 Excel 和 Arduino 板之间的串行通信。
我的问题是,我没有像我希望的那样取回信息,而是在最后得到了很多额外的乱码,并且无法弄清楚它是从哪里来的。我之前包括了我的相关代码,省略了串行通信,因为我知道那部分肯定有效。目前,Arduino 代码只是发送 (##,##,##
) 然后 Serial.println();
使事情变得更简单,因为没有字符串,只是数字。
VBA 代码:
'collects all rows available currently up to 1000(global numRows) lines each time, stores result in dataArray
Public Function getAllData()
Dim stringArray() As Variant
Dim variantArray() As Variant
ReDim stringArray(0 To 3000) As Variant
ReDim variantArray(0 To 3000) As Variant
If Main.dataCollectionActive Then
Dim staringDataRow As Integer
staringDataRow = currentDataRow
Dim returnValue As Long
returnValue = GetAllDataTypes(stringArray(), variantArray(), currentDataRow)
If Not (returnValue = 0) Then
If Not (returnValue = -1) Then
If printWhileCollectingData = True Then
' Call printVariantData
Dim row As Integer
Dim col As Integer
For row = startingDataRow To (currentDataRow - 1)
Main.dataBox.Text = Main.dataBox.Text & stringArray(row)
For col = 0 To (getNumColumns() - 1)
Main.Cells(row + startingRow, col + startingCol).Value = variantArray(col + (row * getNumColumns()))
Next col
Next row
End If
End If
End If
'only stoped in Main sheets code for stopDataButton or if the array has reached its limit
If Not ((currentDataRow * getNumColumns) = UBound(variantArray())) Then
Application.OnTime Now + TimeValue("00:00:01"), "getAllData"
End If
Main.Range("$L$4").Value = currentDataRow
End If
End Function
C++ DLL代码:
//end1 comes before end2, so end1 = i-1 and end2 = i characters
DLL_EXPORT bool WINAPI isEndLine(char end1, char end2){
//check for CRLF
if (end1 == '\r') {
if (end2 == '\n') {
return true;
}
}
//check for normal endLine \0
else if ((end1 == '\0')) {
return true;
}
//check for users own endLine character
else{
for(int i = 0; i < MAX_ENDLINE_LENGTH; i++){
if (end1 == endLine[i]){
return true;
}
}
}
return false;
}
//reads a single character from buffer, if there is nothing returned then the global, bufferAvailable is set to false, so that no more characters are asked for, for now
DLL_EXPORT char WINAPI readCharFromSerial() {
char dataChar[1];
DWORD dwBytesRead = 0; //number of data bytes read in
if(!ReadFile(hSerial, dataChar, 1, &dwBytesRead, NULL)) { //gets data if successful, if not then notifies user
ErrorExit("ReadFile, reading a character");
}
if (dwBytesRead == 0) {
bufferAvailable = false;
}
return dataChar[0]; //returns read in data
}
//reads a single line by pulling one character at a time until it finds the end of line character, if the buffer has characters in it
DLL_EXPORT void WINAPI readLineFromSerialPort(char* line, int length) {
bufferAvailable = true;
int i = 0;
line[i] = readCharFromSerial();
i++;
if (bufferAvailable){
do{
line[i] = readCharFromSerial();
i++;
}while((!isEndLine(line[i-2], line[i-1])) && (i < length));
if(line[i-2] == '\r') {
line[i-2] = '\n';
line[i-1] = '\0';
}
if(!(i<length)){
MessageBoxA(NULL, (LPCSTR)("string length not long enough"), TEXT("readLineFromSerialPort"), MB_OK);
}
}
}
DLL_EXPORT void WINAPI PlaceDblInVarDbl(varArr* VD, double data) {
(VD->ptr[VD->index]).vt = VT_R8; //FIXME add function to do this
(VD->ptr[VD->index]).dblVal = data;
VD->index++;
}
DLL_EXPORT void WINAPI PlaceCharPtrInVarBstr(varArr* VD, char* cString) {
BSTR bstr = new OLECHAR[MAX_DATA_LENGTH];
const char* Cstring = (const char*)cString;
mbstowcs(bstr, Cstring, MAX_DATA_LENGTH);
VD->ptr[VD->index].vt = VT_BSTR;
SysReAllocString(&((VD->ptr[VD->index]).bstrVal), bstr);
VD->index++;
}
DLL_EXPORT int WINAPI ParseCharPtrToVarBstrAndVarDbl(varArr* VD, char* dataString) {
//FIXME perhaps make an array of chars for strings that are allowed without being coppied, this would be added to the if begging with !isdigit (like the '.')
bool hasLetters = false;
int endIndex = 0;
int startIndex = 0;
// MessageBoxA(NULL, (LPCSTR)("entered"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
while (!(isEndLine(dataString[endIndex], dataString[endIndex+1]))) {
hasLetters = false;
startIndex = endIndex;
while (!isDelim(dataString[endIndex]) && (!(isEndLine(dataString[endIndex-1], dataString[endIndex])))) {
if (!(isdigit(dataString[endIndex])) && !(dataString[endIndex] == ' ') && !(dataString[endIndex] == '.')) {
hasLetters = true;
}
endIndex++;
}
// MessageBoxA(NULL, (LPCSTR)("delimeter found"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
if((startIndex + 1 == endIndex) || (startIndex == endIndex)/* && !(isEndLine(dataString[endIndex-1], dataString[endIndex]))*/) {
//FIXME odd way to fix CRLF problem
// MessageBoxA(NULL, (LPCSTR)("triggered if"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
}
else if (hasLetters) { //string
char smallerString[MAX_DATA_LENGTH];
const char* DStr = (const char*)(&(dataString[startIndex]));
strncpy(smallerString, DStr, endIndex-startIndex+1);
smallerString[endIndex-startIndex+1] = '\0';
PlaceCharPtrInVarBstr(VD, smallerString);
// MessageBoxA(NULL, (LPCSTR)("triggered hasLetters"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
}
else { //double
//FIXME remove whitespace
char* start = &dataString[startIndex];
char* eOS = &(dataString[endIndex]);
char** endOfString = &eOS;
double data = strtod(start, endOfString);
//FIXME do some error checking
PlaceDblInVarDbl(VD, data);
// MessageBoxA(NULL, (LPCSTR)("triggered does not hasLetters"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
}
endIndex++;
}
//, MessageBoxA(NULL, (LPCSTR)("exited"), TEXT("ParseCharPtrToVarBstrAndVarDbl"), MB_OK);
return VD->startingIndex - VD->index;
}
//first read a lines from the serial port and then parse it into dataArray, does this until there is no data in buffer or array is full
//returns how many rows that it read
DLL_EXPORT int WINAPI GetAllDataTypes(LPSAFEARRAY* unparsedData, LPSAFEARRAY* parsedData, int* currentDataRow) {
bufferAvailable = true;
varArr UPD;
OpenVariantSafeArray(&UPD, unparsedData, *currentDataRow); if (UPD.failed) { return -1; }
varArr PD;
OpenVariantSafeArray(&PD, parsedData, *currentDataRow); if (PD.failed) { return -1; }
while (bufferAvailable && ((PD.index + 10) < PD.uBound)) {
char dataString[MAX_DATA_LENGTH];
readLineFromSerialPort(dataString, MAX_DATA_LENGTH);
if (bufferAvailable) {
PlaceCharPtrInVarBstr(&UPD, dataString);
ParseCharPtrToVarBstrAndVarDbl(&PD, dataString);
}
}
CloseVariantSafeArray(&UPD, unparsedData); if (UPD.failed) { return -1; }
CloseVariantSafeArray(&PD, parsedData); if (PD.failed) { return -1; }
*currentDataRow += UPD.index - UPD.startingIndex;
bufferAvailable = true;
return UPD.index - UPD.startingIndex;
}
产生的错误:
这是在 Excel 的文本框中打印时返回的未解析字符串。
0.00,0.01,0.000.10,0.02,0.010.20,0.03,0.020.30,0.04,0.030.40,0.05,0.040.50,0.06,0.050.60,0.07,0.060.70,0.08,0.070.80,0.09,0.080.90,0.10,0.091.00,0.10,0.10
但是,VBA for 循环在单元格中打印的已解析字符串。仍然有随机字符。看来我在 DLL 中的解析有问题,因为最后一个 double 总是以字符串结束,然后它总是有随机字符串。
0.000 0.010 "0.00"- 0.100 0.020"0.01" - 0.2000.030 "0.02" -0.300 0.040 "0.03"- 0.400 0.0500.900 0.100 "0.09"- 0.000 0.100"0.10" - 0.1000.110 "0.11" -0.200 0.120 "0.12"- 0.300 0.130"0.13" - 0.4000.140 "0.14" -0.500 0.150 "0.15"- 0.600 0.160"0.16" - "0.25" - 0.6000.240 "0.26" -0.700 0.250 "0.27"-
最佳答案
DLL 代码中ParseCharPtrToVarBstrAndVarDbl() 中最后的endIndex++ 跳过了分隔符,跳过了字符串中的空终止符。解决方法是为字符串的末尾添加一个最终的 if 语句,如果是则返回。
关于c++ - 通过 C++ DLL 将 Arduino 字符串转换为 Excel BSTR 的随机字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45516146/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!