Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zceemja/platform-timsp430emu
This is a clone of PlatformIO MSP430 platform, except uploader is replaced with software emulator
https://github.com/zceemja/platform-timsp430emu
arduino msp430 msp430g2553 platformio ti-msp430
Last synced: 18 days ago
JSON representation
This is a clone of PlatformIO MSP430 platform, except uploader is replaced with software emulator
- Host: GitHub
- URL: https://github.com/zceemja/platform-timsp430emu
- Owner: zceemja
- License: apache-2.0
- Created: 2022-02-21T10:50:35.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-21T11:08:21.000Z (almost 3 years ago)
- Last Synced: 2024-11-22T05:25:16.524Z (3 months ago)
- Topics: arduino, msp430, msp430g2553, platformio, ti-msp430
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TI MSP430 Emulator: development platform for [PlatformIO](http://platformio.org)
This is a clone of PlatformIO MSP430 platform, except uploader is replaced with software emulator. Emulator is only available for MSP-EXP430G2553LP board.
MSP430 microcontrollers (MCUs) from Texas Instruments (TI) are 16-bit, RISC-based, mixed-signal processors designed for ultra-low power. These MCUs offer the lowest power consumption and the perfect mix of integrated peripherals for thousands of applications.
* [Home](http://platformio.org/platforms/timsp430) (home page in PlatformIO Platform Registry)
* [Documentation](http://docs.platformio.org/page/platforms/timsp430.html) (advanced usage, packages, boards, frameworks, etc.)
* [Emulator](https://github.com/zceemja/msp430emu) (emulator source code, list of implemented features)# 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:```ini
[env:lpmsp430g2553-emu]
platform = https://github.com/zceemja/platform-timsp430emu.git
board = lpmsp430g2553
framework = arduino
...
```
3. Upload code. Upon uploading, PlatformIO will open emulator program.# Configuration
Please navigate to [documentation](http://docs.platformio.org/page/platforms/timsp430.html).