Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Msp430fr6989 fix #676

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/frameworks/energia.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TI

* - ``lpmsp430fr4133``
- `TI LaunchPad w/ msp430fr4133 <http://www.ti.com/tool/msp-exp430fr4133>`_
- MSP430G2553
- MSP430FR4133
- 16 MHz
- 16 Kb
- 2 Kb
Expand All @@ -98,7 +98,7 @@ TI

* - ``lpmsp430fr6989``
- `TI LaunchPad w/ msp430fr6989 <http://www.ti.com/tool/msp-exp430fr6989>`_
- MSP430G2553
- MSP430FR6989
- 16 MHz
- 128 Kb
- 2 Kb
Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/timsp430.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ TI

* - ``lpmsp430fr4133``
- `TI LaunchPad w/ msp430fr4133 <http://www.ti.com/tool/msp-exp430fr4133>`_
- MSP430G2553
- MSP430FR4133
- 16 MHz
- 16 Kb
- 2 Kb
Expand All @@ -143,7 +143,7 @@ TI

* - ``lpmsp430fr6989``
- `TI LaunchPad w/ msp430fr6989 <http://www.ti.com/tool/msp-exp430fr6989>`_
- MSP430G2553
- MSP430FR6989
- 16 MHz
- 128 Kb
- 2 Kb
Expand Down
1 change: 1 addition & 0 deletions docs/userguide/cmd_boards.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,4 @@ Examples
lpmsp430g2231 msp430g2231 1Mhz 2Kb 128B LaunchPad w/ msp430g2231 (1MHz)
lpmsp430g2452 msp430g2452 16Mhz 8Kb 256B LaunchPad w/ msp430g2452 (16MHz)
lpmsp430g2553 msp430g2553 16Mhz 16Kb 512B LaunchPad w/ msp430g2553 (16MHz)
lpmsp430fr6989 msp430fr6989 16Mhz 16Kb 512B LaunchPad w/ msp430fr6989(16MHz)
4 changes: 2 additions & 2 deletions platformio/boards/timsp430.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"build": {
"core": "msp430",
"f_cpu": "16000000L",
"mcu": "msp430g2553",
"mcu": "msp430fr4133",
"variant": "launchpad_fr4133"
},
"frameworks": ["energia"],
Expand All @@ -147,7 +147,7 @@
"build": {
"core": "msp430",
"f_cpu": "16000000L",
"mcu": "msp430g2553",
"mcu": "msp430fr6989",
"variant": "launchpad_fr6989"
},
"frameworks": ["energia"],
Expand Down