Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

README.md

File metadata and controls

29 lines (21 loc) · 1.05 KB

TI MSP432: development platform for PlatformIO

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 (MSP‑EXP432P401R LaunchPad™ Development Kit)
  • Datasheet (MSP432P401R microcontroller)

Usage

  1. Install PlatformIO
  2. Create PlatformIO project and configure a platform option in platformio.ini file:

Stable version

[env:stable]
platform = timsp432
board = ...
...

Development version

[env:development]
platform = https://github.com/zceemja/platform-timsp432.git
board = ...
...