Difference between revisions of "MSP430"
Line 28: | Line 28: | ||
Hint: the space could really use an [[Automatic_window_blinds|automated window blind control]] mechanism, which includes the blinds/awning outside (controlled by the rotary momentum switches per two windows, overridden by a fubar central control) | Hint: the space could really use an [[Automatic_window_blinds|automated window blind control]] mechanism, which includes the blinds/awning outside (controlled by the rotary momentum switches per two windows, overridden by a fubar central control) | ||
+ | |||
+ | |||
+ | == How-To == | ||
+ | Based on Debian 6.0 | ||
+ | |||
+ | Most info from [http://blog.wikifotos.org/2010/11/15/msp430-launchpad-in-ubuntu/] | ||
+ | |||
+ | INSTALLING : | ||
+ | |||
+ | <pre> | ||
+ | # Install required packages: | ||
+ | |||
+ | sudo aptitude install git-core gcc-4.4 texinfo patch libncurses5-dev zlibc zlib1g-dev libx11-dev libusb-dev libreadline6-dev | ||
+ | |||
+ | Download and compile mspgcc: | ||
+ | |||
+ | git clone git://mspgcc4.git.sourceforge.net/gitroot/mspgcc4/mspgcc4 | ||
+ | cd mspgcc4 | ||
+ | sudo sh buildgcc.sh | ||
+ | |||
+ | |||
+ | Press enter to use the default answers when the scripts ask you. Only write yes when it ask “Do you want to start build right now? (y/n) [n] ” because the default is no. | ||
+ | ATTENTION this will take some time depending on the speed of your machine (30-60min) | ||
+ | |||
+ | |||
+ | # Download and compile mspdebug: | ||
+ | |||
+ | wget -O mspdebug.tar.gz http://sourceforge.net/projects/mspdebug/files/latest | ||
+ | tar -zxvf mspdebug.tar.gz | ||
+ | cd mspdebug | ||
+ | make | ||
+ | sudo make install | ||
+ | |||
+ | # Create a udev rule to be able to use the usb debug shield | ||
+ | |||
+ | sudo nano /etc/udev/rules.d/46-TI_launchpad.rules | ||
+ | |||
+ | Now paste inside the following rule: | ||
+ | |||
+ | ATTRS{idVendor}=="0451", ATTRS{idProduct}=="f432", MODE="0660", GROUP="plugdev" | ||
+ | |||
+ | Restart the udev service: | ||
+ | |||
+ | service udev restart | ||
+ | |||
+ | </pre> |
Revision as of 13:31, 11 June 2011
Project: MSP430 | |
---|---|
Featured: | |
State | Active |
Members | |
GitHub | No GitHub project defined. Add your project here. |
Description | MSP430 16bit ultra low-power microcontroller |
Picture | |
No project picture! Fill in form Picture or Upload a jpeg here |
Contents
intro
Stolen from TI's wiki page:
"The MSP430 is a 16-bit, ultra-low power, mixed signal microcontroller from Texas Instruments. The strengths of the MSP430 lie in its easy-to-learn, C-compiler friendly, 16-bit CPU partnered with flexible low power modes and intelligent, low-power peripherals. As a catalog market product, its versatility is applied across a number of different end-equipments including medical equipment, electricity and sub-metering, and home appliances such as smoke detectors, thermostats, etc... With over 230 parts available, there is likely to be an MSP430 for almost any application."
More information at ti.com/430value
MSP430 LaunchPad
The space got two Texas Instruments MSP430 LaunchPad development kits donated, free for use within the space.
Each LaunchPad kit includes the following:
- Quick start guide
- MSP-EXP430G2 development/debugging PCB
- MSP430G2231 IC (included on the PCB)
- MSP430G2211 IC
- 2x 10 pins header M/F for extension boards
- micro crystal 32.768kHz
- USB->mini-USB cable
See ti.com/launchpadwiki for more information
project
There is a rumour that the first person who writes a useful program on the MSP430 will get a month free access to ACKspace! ask the board for details.
Hint: the space could really use an automated window blind control mechanism, which includes the blinds/awning outside (controlled by the rotary momentum switches per two windows, overridden by a fubar central control)
How-To
Based on Debian 6.0
Most info from [1]
INSTALLING :
# Install required packages: sudo aptitude install git-core gcc-4.4 texinfo patch libncurses5-dev zlibc zlib1g-dev libx11-dev libusb-dev libreadline6-dev Download and compile mspgcc: git clone git://mspgcc4.git.sourceforge.net/gitroot/mspgcc4/mspgcc4 cd mspgcc4 sudo sh buildgcc.sh Press enter to use the default answers when the scripts ask you. Only write yes when it ask “Do you want to start build right now? (y/n) [n] ” because the default is no. ATTENTION this will take some time depending on the speed of your machine (30-60min) # Download and compile mspdebug: wget -O mspdebug.tar.gz http://sourceforge.net/projects/mspdebug/files/latest tar -zxvf mspdebug.tar.gz cd mspdebug make sudo make install # Create a udev rule to be able to use the usb debug shield sudo nano /etc/udev/rules.d/46-TI_launchpad.rules Now paste inside the following rule: ATTRS{idVendor}=="0451", ATTRS{idProduct}=="f432", MODE="0660", GROUP="plugdev" Restart the udev service: service udev restart