Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manchicken/msp430_experiments
Here's where I'm teaching my self how to hack the MSP430 (currently for the MSP430G2553)
https://github.com/manchicken/msp430_experiments
Last synced: 18 days ago
JSON representation
Here's where I'm teaching my self how to hack the MSP430 (currently for the MSP430G2553)
- Host: GitHub
- URL: https://github.com/manchicken/msp430_experiments
- Owner: manchicken
- Created: 2012-12-06T21:53:28.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-03T06:10:10.000Z (about 12 years ago)
- Last Synced: 2023-03-24T10:57:47.526Z (almost 2 years ago)
- Language: C
- Size: 141 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
msp430_experiments
==================Here's where I'm teaching my self how to hack the MSP430 (currently for the MSP430G2553)
MSP430 Programs
===============
## toggle_leds_with_button.430 ##
This program toggles P1.0 and P1.6 with each push of P1.3.## light_patterns.430 ##
The goal of this is to learn how to use the timer and make patterns of P1.0 and P1.6 appear.## readout_demo.430 ##
The goal of this is to use the timer and the LEDs to give a readout. A red LED flash (1.0) is ten, a green LED flash (1.6) is one. RED, GREEN, GREEN would be twelve.## temp_readout_demo.430 ##
Something to tell you the temperature, uses the same convention as readout_demo.430.Other Stuff
===========
## bitmath.osx ##
A program I'm using to double-check my math and use of operators.## scripts/gdbmsp ##
This script is just a shortcut for loading GDB with my program. (doesn't really work all that well, kinda broken)## scripts/progmsp ##
This script is a quick shortcut for programming the MSP with your chosen binary.Usage: `./scripts/progmsp ./bin/readout_demo.430`