3061c73f6
김태훈
인코딩 변경 EUC-KR -> ...
|
9
10
11
12
13
14
15
|
{ /// IniFile 정보 저장 파일이름
char ch_stx; // STX에 사용되는 바이트 코드
char ch_etx; // ETX에 사용되는 바이트 코드
char ch_dle; // DLE에 사용되는 바이트 코드
char buffer[__RS_BUFFER_MAX+1]; // 수신 자료를 위한 버퍼
int sz_data; // 수신 자료의 바이트 개수, -1:CRC 에러, 0:자료 없음, 다른값:수신 자료 개수
int (*check_crc)( rs_dle_t *); // CRC를 체크하는 함수
|
8c2952457
김태훈
응용 프로그램 추가
|
16
17
18
19
20
21
22
23
|
};
extern rs_dle_t *rs_create_dle( int (*check_crc)( rs_dle_t *));
extern char *rs_put_dle ( rs_dle_t *dle, char *data, int size);
extern int rs_make_packet( rs_dle_t *dle, char *dst_buf, char *src_buf, int src_cnt );
extern char *rs_error_string( void);
#endif
|