English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

The low level serial driver makes no provision for buffering the received data.What is the meaning of this statement

2006-07-04 23:43:13 · 1 answers · asked by Anonymous in Computers & Internet Programming & Design

1 answers

It means the serial driver will only store the last 1 byte received. If another byte is received before you read out the previous one, then the previous one will be lost. In this situation you need to read the received data after every byte. I dont know what language or platform you are using, but you can set up a receive interrupt (best method) to get the data, or a timer and just check for receive data every so often.

2006-07-05 01:53:53 · answer #1 · answered by justme 7 · 0 0

fedest.com, questions and answers