多线程程序调试运行出错Unhandled exception

2026-02-14 15:57:40

1、解决方案:m_hFH463CommI句柄改成全局变量。

在stdafx.h文件中定义全局变量

extern HANDLE g_hFH463CommI; //串口句柄

stdafx.cpp

HANDLE g_hFH463CommI; //串口句柄

然后给全局变量赋值

g_hFH463CommI=m_hFH463CommI;

WriteFile(g_hFH463CommI, ch, sizeof(ch), &dwactlen, NULL) ;

猜你喜欢