Skip to content

Commit

Permalink
Merge branch 'release/v2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed May 15, 2017
2 parents cfb0894 + d1e936d commit bfbee0a
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 45 deletions.
14 changes: 7 additions & 7 deletions boards/lpmsp430f5529.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
"core": "msp430",
"extra_flags": "-DENERGIA_ARCH_MSP430 -DENERGIA_MSP_EXP430F5529LP",
"f_cpu": "16000000L",
"mcu": "msp430f5529",
"hwids": [
[
"0x2341",
"0x0c9f"
]
],
"mcu": "msp430f5529",
"variant": "MSP-EXP430F5529LP"
},
"debug": {
"tools": {
"mspdebug": {
"onboard": true,
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"tilib",
"$UPLOAD_PROTOCOL",
"gdb"
]
},
"onboard": true
],
"executable": "mspdebug",
"package": "tool-mspdebug"
}
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions boards/lpmsp430fr4133.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"debug": {
"tools": {
"mspdebug": {
"onboard": true,
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"tilib",
"$UPLOAD_PROTOCOL",
"gdb"
]
},
"onboard": true
],
"executable": "mspdebug",
"package": "tool-mspdebug"
}
}
}
},
Expand Down
38 changes: 29 additions & 9 deletions boards/lpmsp430fr5739.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,35 @@
"debug": {
"tools": {
"mspdebug": {
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"rf2500",
"gdb"
]
},
"onboard": true
"onboard": true,
"server": [
{
"arguments": [
"tilib",
"gdb"
],
"executable": "mspdebug",
"package": "tool-mspdebug",
"system": [
"windows",
"windows_amd64",
"windows_x86"
]
},
{
"arguments": [
"$UPLOAD_PROTOCOL",
"gdb"
],
"executable": "mspdebug",
"package": "tool-mspdebug",
"system": [
"darwin_x86_64",
"linux_i686",
"linux_x86_64"
]
}
]
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions boards/lpmsp430fr5969.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"debug": {
"tools": {
"mspdebug": {
"onboard": true,
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"tilib",
"$UPLOAD_PROTOCOL",
"gdb"
]
},
"onboard": true
],
"executable": "mspdebug",
"package": "tool-mspdebug"
}
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions boards/lpmsp430fr6989.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"debug": {
"tools": {
"mspdebug": {
"onboard": true,
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"tilib",
"$UPLOAD_PROTOCOL",
"gdb"
]
},
"onboard": true
],
"executable": "mspdebug",
"package": "tool-mspdebug"
}
}
}
},
Expand Down
40 changes: 30 additions & 10 deletions boards/lpmsp430g2553.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,47 @@
"core": "msp430",
"extra_flags": "-DENERGIA_ARCH_MSP430 -DENERGIA_MSP_EXP430G2553LP",
"f_cpu": "16000000L",
"mcu": "msp430g2553",
"hwids": [
[
"0x2341",
"0x0c9f"
]
],
"mcu": "msp430g2553",
"variant": "MSP-EXP430G2553LP"
},
"debug": {
"tools": {
"mspdebug": {
"server": {
"package": "tool-mspdebug",
"executable": "mspdebug",
"arguments": [
"rf2500",
"gdb"
]
},
"onboard": true
"onboard": true,
"server": [
{
"arguments": [
"tilib",
"gdb"
],
"executable": "mspdebug",
"package": "tool-mspdebug",
"system": [
"windows",
"windows_amd64",
"windows_x86"
]
},
{
"arguments": [
"$UPLOAD_PROTOCOL",
"gdb"
],
"executable": "mspdebug",
"package": "tool-mspdebug",
"system": [
"darwin_x86_64",
"linux_i686",
"linux_x86_64"
]
}
]
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-timsp430.git"
},
"version": "2.0.0",
"version": "2.0.1",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download",
Expand Down Expand Up @@ -47,6 +47,11 @@
"type": "uploader",
"optional": true,
"version": "~1.2200.0"
},
"tool-msp430gdbproxy": {
"type": "debugger",
"optional": true,
"version": "~1.18.0"
}
}
}

0 comments on commit bfbee0a

Please sign in to comment.