SERIN program code used with Parallax GPS unit and BS2: OPEN MODE
510rock
Posts: 1
In the demo code they setup serial com with the following code:
T4800 Con 188
Open Con $8000
Baud Con Open | T4800 'Open mode to allow daisy chaining.
Then to pull various data out of the GPS they use:
SEROUT Sio, Baud, ["!GPS", GetDate]
SERIN Sio, Baud, 3000, No_Response, [timeHRS, timeMINS, timeSEC]
After searching and reading the serial section of the manual, I did not see any references
to what the Open mode or daisy chaining would be.
I would appreciate some help on understanding the purpose and use of this Open command. Thanks
T4800 Con 188
Open Con $8000
Baud Con Open | T4800 'Open mode to allow daisy chaining.
Then to pull various data out of the GPS they use:
SEROUT Sio, Baud, ["!GPS", GetDate]
SERIN Sio, Baud, 3000, No_Response, [timeHRS, timeMINS, timeSEC]
After searching and reading the serial section of the manual, I did not see any references
to what the Open mode or daisy chaining would be.
I would appreciate some help on understanding the purpose and use of this Open command. Thanks
Comments
In this case, daisy chaining just means that more than two devices are connected to the same I/O line. The term can mean something more complex as well.