https://github.com/zceemja/platform-timsp432
https://github.com/zceemja/platform-timsp432
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zceemja/platform-timsp432
- Owner: zceemja
- License: apache-2.0
- Created: 2021-12-31T16:14:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T22:38:25.000Z (almost 4 years ago)
- Last Synced: 2025-04-15T09:39:53.718Z (about 1 year ago)
- Language: Python
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TI MSP432: development platform for [PlatformIO](http://platformio.org)
The MSP432 is a mixed-signal microcontroller family from Texas Instruments. It is based on a 32-bit ARM Cortex-M4F CPU, and extends their 16-bit MSP430 line, with a larger address space for code and data, and faster integer and floating point calculation than the MSP430. Like the MSP430, it has a number of built-in peripheral devices, and is designed for low power requirements
* [Datasheet](https://academics.uccs.edu/mlaubhan/common/MSP432/slau597b.pdf) (MSP‑EXP432P401R LaunchPad™ Development Kit)
* [Datasheet](https://www.ti.com/lit/ds/slas826e/slas826e.pdf) (MSP432P401R microcontroller)
# Usage
1. [Install PlatformIO](http://platformio.org)
2. Create PlatformIO project and configure a platform option in [platformio.ini](http://docs.platformio.org/page/projectconf.html) file:
## Stable version
```ini
[env:stable]
platform = timsp432
board = ...
...
```
## Development version
```ini
[env:development]
platform = https://github.com/zceemja/platform-timsp432.git
board = ...
...
```