add some files

pull/1108/head
hjjeon0608 2015-05-15 11:28:46 +09:00
parent c8ef005612
commit 2f751039fc
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,7 @@
{
"1" : {"mcu": "WIZwiki_W7500",
"port":"COM29",
"disk":"E:\\",
"peripherals": []
}
}

View File

@ -69,8 +69,19 @@ class Target:
def init_hooks(self, hook, toolchain_name): def init_hooks(self, hook, toolchain_name):
pass pass
##WIZnet
class WIZwiki_W7500(Target):
def __init__(self):
Target.__init__(self)
self.core = "Cortex-M0"
self.extra_labels = ['WIZNET', 'W7500x', 'WIZwiki_W7500']
self.supported_toolchains = ["ARM", "uARM",]
self.default_toolchain = "ARM"
self.supported_form_factors = ["ARDUINO"]
### NXP ### ### NXP ###
# This class implements the post-link patching step needed by LPC targets # This class implements the post-link patching step needed by LPC targets
@ -1201,6 +1212,9 @@ class EFM32HG_STK3400(Target):
# Get a single instance for each target # Get a single instance for each target
TARGETS = [ TARGETS = [
### WIZnet ###
WIZwiki_W7500(),
### NXP ### ### NXP ###
LPC11C24(), LPC11C24(),
LPC11U24(), LPC11U24(),

View File

@ -0,0 +1,5 @@
{
"targets": {
"WIZwiki_W7500" : ["ARM", "uARM"]
}
}