Skip to content

Commit e45aeed

Browse files
committed
Describe using MSP430 with PlatformIO.
1 parent 6e5fa71 commit e45aeed

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
- [TGZ48](./hardware/tgz48.md)
1212
- [Uncategorized](./hardware/uncategorized/intro.md)
1313
- [IKEA Tradfri](./hardware/uncategorized/ikea_tradfri.md)
14+
- [IKEA Tradfri](./hardware/uncategorized/msp430_pio.md)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Using MSP430 with PlatformIO
2+
3+
There are some hurdles when configuring PlatformIO for development with MSP430 as there are no real examples and incomplete docs concerning uploading the code.
4+
The following config seemed to work.
5+
6+
```ini
7+
[env:lpmsp430g2553]
8+
platform = timsp430
9+
board = lpmsp430g2553
10+
framework = arduino
11+
debug_tool = mspdebug
12+
upload_protocol = rf2500
13+
```
14+
15+
The important parts are `debug_tool` and `upload_protocol`.

0 commit comments

Comments
 (0)