Returns True if the autopilot reports that the current firmware is a stable release (not a pre-release or development version).
(self)
| 315 | self.release = raw_version & 0xFF |
| 316 | |
| 317 | def is_stable(self): |
| 318 | """ |
| 319 | Returns True if the autopilot reports that the current firmware is a stable |
| 320 | release (not a pre-release or development version). |
| 321 | """ |
| 322 | return self.release == 255 |
| 323 | |
| 324 | |
| 325 | def release_version(self): |
no outgoing calls
no test coverage detected