13.1.13. cesRxReset¶
SYNOPSYS¶
t_i32 cesRxReset(
[in] t_i32 nNodeID,
[in] t_i32 nChannel
)
DESCRIPTION¶
수신(RX) 버퍼를 초기화 합니다
PARAMETER¶
nNetID : 원격 노드 ID
nChannel : 채널 번호
EXAMPLE¶
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include "ceSDK.h"
#include "ceSDKDef.h"
long nSerialChNo = 0; // 시리얼 채널(Port) 번호
// 0 번 시리얼 포트의 송신 버퍼를 비웁니다.
if ( cesTxReset ( nSerialChNo ) != ceERR_NONE )
{
OutputDebugString ( "cesTxReset has been failed" );
}
// 0 번 시리얼 포트의 수신 버퍼를 비웁니다.
if ( cesRxReset ( nSerialChNo ) != ceERR_NONE )
{
OutputDebugString ( "cesRxReset has been failed" );
}
|