Difference between revisions of "Mansos installation"

From DiLab
Jump to: navigation, search
(Notes for installation by hand, by Leo)
Line 8: Line 8:


Then, install msp430-gcc.
Then, install msp430-gcc.
* One optiopn is [http://sourceforge.net/apps/mediawiki/mspgcc/index.php?title=Linux_installation installing it by hand]
* One option is [http://sourceforge.net/apps/mediawiki/mspgcc/index.php?title=Linux_installation installing it by hand]
* Alternative is to use the newer, mspgcc4. [http://gcc.gnu.org/gcc-4.4/ Read here] how to set it up.
* If you happen to have TinyOS, Contiki or some other software that have msp430-gcc installed, you may save this step and use their version of msp430-gcc.


Then, set up your '''.bashrc''' as follows (you may set this up in a separate script). This will find the mspgcc tools and the mansos root directory.
Then, set up your '''.bashrc''' as follows (you may set this up in a separate script). This will find the mspgcc tools and the mansos root directory.

Revision as of 14:26, 29 March 2010

Notes for installation by hand, by Leo

First, get the MansOS from SVN repository. This will include the source files and the scripts and tools. You may create the svn directory below, or use some other path.

cd ~/svn/
svn co http://mansos.net/svn/mansos/ mansos


Then, install msp430-gcc.

  • One option is installing it by hand
  • Alternative is to use the newer, mspgcc4. Read here how to set it up.
  • If you happen to have TinyOS, Contiki or some other software that have msp430-gcc installed, you may save this step and use their version of msp430-gcc.

Then, set up your .bashrc as follows (you may set this up in a separate script). This will find the mspgcc tools and the mansos root directory.

export PATH="/opt/mspgcc/bin:$PATH"
export MOSROOT="/opt/mansos"

For the MOSROOT path to work you may want to add a link to your actual downloaded sources of mansos, e.g.

cd /opt/
ln -s ~/svn/mansos/ mansos/

Now, test it.

  • Go to /opt/mansos/apps/Blink and try compiling and uploading it to a telosb mote. Also try compiling for PC.
cd /opt/mansos/apps/Blink
make telosb
make telosb up[load

make pc
make pc run