일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 혼공단
- postcard
- 제주도 여행
- 명동
- 영어
- 영어공부
- 제주도 맛집
- 제주도
- 제주도 숙소
- 혼공파
- postcrossing
- 맛집
- 천안 맛집
- 제주도 혼밥
- 말해보카
- 포스트크로싱
- 제주도 혼술
- 엽서북
- 혼공머신
- 성산 맛집
- 플레이스캠프
- PYTHON
- 혼공챌린지
- 제주도 성산
- 엽서
- 성산
- 파이썬
- 제주도 카페
- 성산 혼술
- 성산 혼밥
- Today
- Total
목록Programming/Serial Comm (2)
Cherry Cloud 9
SetupComm function BOOL WINAPI SetupComm( _In_ HANDLE hFile, _In_ DWORD dwInQueue, _In_ DWORD dwOutQueue ); 지정된 통신 장치의 통신 파라메타를 초기화 입출력 버퍼의 크기를 정한다. Parameters hFile [in] A handle to the communications device. The CreateFile function returns this handle. dwInQueue [in] The recommended size of the device's internal input buffer, in bytes. dwOutQueue [in] The recommended size of the device's inter..
COMMTIMEOUTS structure typedef struct _COMMTIMEOUTS { DWORD ReadIntervalTimeout; DWORD ReadTotalTimeoutMultiplier; DWORD ReadTotalTimeoutConstant; DWORD WriteTotalTimeoutMultiplier; DWORD WriteTotalTimeoutConstant; } COMMTIMEOUTS, *LPCOMMTIMEOUTS; 통신 장치의 타임아웃에 대한 정보가 들어있다. 이 매개변수는 ReadFile, WriteFile 의 행동을 결정한다. Members ReadIntervalTimeout 다음 통신라인의 문자가 도착하기 전까지의 최대 허용 시간 (miliseconds) 시간이 초과되면 R..