You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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