Get platform identifier used in the zip manifest for curr copter
(self)
| 382 | print('') |
| 383 | |
| 384 | def _get_platform_id(self): |
| 385 | """Get platform identifier used in the zip manifest for curr copter""" |
| 386 | identifier = 'cf1' |
| 387 | if (BootVersion.is_cf2(self.protocol_version)): |
| 388 | identifier = 'cf2' |
| 389 | |
| 390 | return identifier |