mirror of https://github.com/ARMmbed/mbed-os.git
Add WIZWIKI_W7500ECO platform in targets.py and build_release.py.
parent
59554a1021
commit
c07b81c52d
|
|
@ -120,6 +120,7 @@ OFFICIAL_MBED_LIBRARY_BUILD = (
|
|||
|
||||
('WIZWIKI_W7500', ('ARM', 'uARM')),
|
||||
('WIZWIKI_W7500P',('ARM', 'uARM')),
|
||||
('WIZWIKI_W7500ECO',('ARM', 'uARM')),
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1594,6 +1594,14 @@ class WIZWIKI_W7500P(Target):
|
|||
self.default_toolchain = "ARM"
|
||||
self.supported_form_factors = ["ARDUINO"]
|
||||
|
||||
class WIZWIKI_W7500ECO(Target):
|
||||
def __init__(self):
|
||||
Target.__init__(self)
|
||||
self.core = "Cortex-M0"
|
||||
self.extra_labels = ['WIZNET', 'W7500x', 'WIZwiki_W7500ECO']
|
||||
self.supported_toolchains = ["uARM", "ARM"]
|
||||
self.default_toolchain = "ARM"
|
||||
|
||||
class SAMR21G18A(Target):
|
||||
def __init__(self):
|
||||
Target.__init__(self)
|
||||
|
|
|
|||
Loading…
Reference in New Issue