Toggling a TelosB ADC Pin

From Cyber-Physical Systems Laboratory
Revision as of 15:59, 22 September 2009 by Liangfok (talk | contribs) (→‎TinyOS 2.x)
Jump to navigationJump to search

TinyOS 1.x

First do this in StdControl.init():

TOSH_MAKE_ADC3_OUTPUT();

To set the pin high:

TOSH_SET_ADC3_PIN();

To set the pin low:

TOSH_CLR_ADC3_PIN();

You can of course switch the ADC number, and maybe even replace it with GIO#.

TinyOS 2.x

In TinyOS 2.x, pin toggling is controlled via interface tos/chips/msp430/pins/HplMsp430GeneralIO.nc.

There is a configuration file with a similar name in the same directory as above that provides multiple instances of the above interface, one for each port. The port corresponds to the port number of the MCU. Toggling the port consists of calling the following commands:

HplMsp430GeneralIO.makeOutput()
HplMsp430GeneralIO.clr()
HplMsp430GeneralIO.set()
HplMsp430GeneralIO.toggle()