Part of twisted.protocols.gps.rockwell View Source View In Hierarchy
Split Table into Classes Show Methods in One Table
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 76 | Method | dataReceived | Called whenever data is received. |
| 136 | Method | receivedMessage | Undocumented |
| 150 | Method | decode_fix | Undocumented |
| 189 | Method | decode_id | Undocumented |
| 201 | Method | decode_channels | Undocumented |
| 216 | Method | decode_satellites | Undocumented |
| 230 | Method | decode_dgps | Undocumented |
| 234 | Method | decode_ecef | Undocumented |
| 238 | Method | decode_channelmeas | Undocumented |
| 242 | Method | decode_usersettings | Undocumented |
| 246 | Method | decode_testresults | Undocumented |
| 250 | Method | decode_meastimemark | Undocumented |
| 254 | Method | decode_utctimemark | Undocumented |
| 258 | Method | decode_serial | Undocumented |
| 262 | Method | decode_eepromupdate | Undocumented |
| 266 | Method | decode_eepromstatus | Undocumented |
Inherited from Protocol:
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 384 | Method | connectionLost | Called when the connection is shut down. |
Inherited from BaseProtocol (via Protocol):
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 341 | Method | makeConnection | Make a connection to a transport and a server. |
| 351 | Method | connectionMade | Called when a connection is made. |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 384 | Method | connectionLost | Called when the connection is shut down. |
| 351 | Method | connectionMade | Called when a connection is made. |
| 76 | Method | dataReceived | Called whenever data is received. |
| 238 | Method | decode_channelmeas | Undocumented |
| 201 | Method | decode_channels | Undocumented |
| 230 | Method | decode_dgps | Undocumented |
| 234 | Method | decode_ecef | Undocumented |
| 266 | Method | decode_eepromstatus | Undocumented |
| 262 | Method | decode_eepromupdate | Undocumented |
| 150 | Method | decode_fix | Undocumented |
| 189 | Method | decode_id | Undocumented |
| 250 | Method | decode_meastimemark | Undocumented |
| 216 | Method | decode_satellites | Undocumented |
| 258 | Method | decode_serial | Undocumented |
| 246 | Method | decode_testresults | Undocumented |
| 242 | Method | decode_usersettings | Undocumented |
| 254 | Method | decode_utctimemark | Undocumented |
| 341 | Method | makeConnection | Make a connection to a transport and a server. |
| 136 | Method | receivedMessage | Undocumented |
Called whenever data is received.
Use this method to translate to a higher-level message. Usually, some callback will be made upon the receipt of each complete protocol message.| Parameters | data | a string of indeterminate length. Please keep in mind that you will probably need to buffer some data, as partial (or multiple) protocol messages may be received! I recommend that unit tests for protocols call through to this method with differing chunk sizes, down to one byte at a time. |