MCPcopy Create free account
hub / github.com/ARMmbed/DAPLink / FirmwareBundle

Class FirmwareBundle

test/bundle.py:55–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53
54
55class FirmwareBundle(object):
56
57 def get_firmware_list(self):
58 """Return the firmware objects associated with this bundle"""
59 raise NotImplementedError()
60
61 @property
62 def build_sha(self):
63 """The GIT SHA this build was created at as a string or None"""
64 raise NotImplementedError()
65
66 @property
67 def build_local_mods(self):
68 """True if this was a clean build, False otherwise"""
69 raise NotImplementedError()
70
71
72class ReleaseFirmwareBundle(FirmwareBundle):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected