實現在對話框類設置串口參數並連接串口,現在在校驗位對應的組合框裡添加了數據N/E/O,分別表示無校驗,奇校驗,偶校驗
int index=m_ctrlParity.GetCurSel();
m_ctrlParity.GetLBText(index,m_strParity);
這裡得到的數據類型m_strParity是CString型,但在打開串口時,用到的數據是char型,怎麼轉化得到呢?網上都是CString轉Char _*
CString data = _T( "OK");
LPBYTE pByte = new BYTE[data.GetLength() + 1];
memcpy(pByte, (VOID*)LPCTSTR(data), data.GetLength());