mirror of https://github.com/ARMmbed/mbed-os.git
Add WIZWIKI_W7500P platform in targets.py and build_release.py.
parent
481a9d97cc
commit
0dc6adf51d
|
@ -116,6 +116,7 @@ OFFICIAL_MBED_LIBRARY_BUILD = (
|
|||
('MAX32600MBED', ('ARM', 'GCC_ARM', 'IAR')),
|
||||
|
||||
('WIZWIKI_W7500', ('ARM', 'uARM')),
|
||||
('WIZWIKI_W7500P',('ARM', 'uARM')),
|
||||
)
|
||||
|
||||
|
||||
|
|
|
@ -1556,6 +1556,14 @@ class WIZWIKI_W7500(Target):
|
|||
self.default_toolchain = "ARM"
|
||||
self.supported_form_factors = ["ARDUINO"]
|
||||
|
||||
class WIZWIKI_W7500P(Target):
|
||||
def __init__(self):
|
||||
Target.__init__(self)
|
||||
self.core = "Cortex-M0"
|
||||
self.extra_labels = ['WIZNET', 'W7500x', 'WIZwiki_W7500P']
|
||||
self.supported_toolchains = ["uARM", "ARM"]
|
||||
self.default_toolchain = "ARM"
|
||||
self.supported_form_factors = ["ARDUINO"]
|
||||
|
||||
class SAMR21G18A(Target):
|
||||
def __init__(self):
|
||||
|
@ -1725,6 +1733,7 @@ TARGETS = [
|
|||
|
||||
### WIZnet ###
|
||||
WIZWIKI_W7500(),
|
||||
WIZWIKI_W7500P(),
|
||||
|
||||
### Atmel ###
|
||||
SAMR21G18A(),
|
||||
|
|
Loading…
Reference in New Issue