工具与软件:
您好!
我希望在 MSP-GANG 中检索所选图像的名称、此处圈出的名称。

我使用 API-DLL 通过串行连接到 Gang 编程器。
我需要哪种 API 调用?
Mike
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
我已经尝试了标题中标识的所有值、只会得到这些值的空字符串。 我在 C#程序中尝试过它、使用了 P/Invoke 和本机 C 程序(以消除任何 p/invoke 错误)
long error = MSPGANG_InitCom((LPTSTR) L"COM4", 115200);
for (int a = 0; a < NAMECFG_MAX_INDEX; a++)
{
LPTSTR nameP = MSPGANG_GetNameConfig(a);
std::cout << nameP << "\r\n";
}
error = MSPGANG_ReleaseCom();您好、 Diego Abad Sajamin 您的同事是否有任何进一步的信息?