Top Banner
3/2/2015 IoET - L05 sense 1 Wireless Embedded InterNetworking Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University of California, Berkeley
58

3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Jan 01, 2016

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015 IoET - L05 sense 1

Wireless Embedded InterNetworking

Foundations of Ubiquitous Sensor Networks

Triggers and Sensing

David E. CullerUniversity of California, Berkeley

Page 2: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 2

An Analog World

• Everything in the physical world is an analog signal– Sound, light, temperature, gravitational force

• Need to convert into electrical signals– Transducers: converts one type of energy to another

» Electro-mechanical, Photonic, Electrical, …– Examples

» Microphone/speaker» Thermocouples» Accelerometers

• And digitize• Then manipulate

Page 4: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 4

Simplest Analog Device

• Often think of it as an actuator, rather than a sensor– But that’s because of the circuit we put it in

• It is binary (two states) but why is it not digital?

switch

Rain Sensor

Magnetic Reed Contact Switch

Tilt Sensor

Water Level Float Sensor

PhotoInterrupter

Flow Sensor

TemperatureSwitch

Pressure Switch

Page 5: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 5

To Sample a switch, make it digital

• Many sensor are switches• Two “states” but not digital

– Open => no current– Closed => no voltage drop

• Cap charges to Vacc when open• Cap discharges to GND when

closed

VD

VtL

VtH

Vacc

GND

switch

D

Page 6: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 6

Making Sense of Physical Information

• Digital representation of physical phenomenon – Transducer => Signal Conditioning => ADC =>– Conversion to physical units– Calibration and correction– Here: 0 / 1, True / False

• Associating meaning to the reading– Open / Closed– Empty / Full– In Position / Not

• Depends on the specific device taking the reading

• The Context of the device

Page 7: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 7

Analog to Digital

• What we want

• How we have to get there

SoftwareSensor ADC

PhysicalPhenomena

Voltage ADC Counts Engineering Units

PhysicalPhenomena

Engineering Units

Page 8: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 8

Ratiometric sensor

• Va = Vacc* Rsens / (Rcomp+ Rsens)• use Vref = Vacc

• D = M * Rsens / (Rcomp+ Rsens)

Vacc

GND

Resistive Sensor

VA

Rcomp

Rsensor

Page 9: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Getting down to the MCU

3/2/2015IoET - L05 sense 9

Page 10: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 10

Getting Input into the MCU

Page 11: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Storm: points to pins

3/2/2015IoET - L05 sense 11

Page 12: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Firestorm => Storm => ATSAM4LC

• Most pins have many functions

– C.f. section 3.2

3/2/2015IoET - L05 sense 12

Page 13: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Power, Power, Power

3/2/2015IoET - L05 sense 13

Page 14: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 14

ARM Cortex MCU – a system on a chip

Page 15: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 15

Memory and Memory-Mapped IO

Page 16: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

GPIO

• The General Purpose Input/Output Controller (GPIO) controls the I/O pins of the microcontroller. Each GPIO pin may be used as a general-purpose I/O or be assigned to a function of an embed- ded peripheral.

• The GPIO is configured using the Peripheral Bus (PB).

3/2/2015IoET - L05 sense 16

Page 17: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

What’s beyond the pin

• Control logic associated with a pin

3/2/2015IoET - L05 sense 17

Page 18: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

GPIO Registers

3/2/2015IoET - L05 sense 18

Page 19: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 19

Analog-to-Digital Basics

• So, how do you convert analog signals to a discrete values?

• A software view:1. Set some control registers :

» Specify where the input is coming from (which pin)» Specify how to collect it (reference, mode, range)

2. Enable interrupt and set a bit to start a conversion3. Wait for conversion (poll for complete or interrupt) 4. read sample from data register5. Wait for a sample period6. Repeat step 1

Page 20: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Our ADC

3/2/2015IoET - L05 sense 20

Page 21: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 21

ADC Features

Texas Instruments MSP430

AtmelATmega 1281

ATSAM4L

Resolution 12 bits 10 bits 12 (or 8) bits

Sample Rate 200 ksps 76.9 ksps 300 ksps

Internally Generated Reference Voltage

1.5V, 2.5V, Vcc 1.1V, 2.56V 1.0 V, 0.625 Vcc, Vcc/2, 2 ext ref

1-64x Gain, zoom

Single-Ended Inputs 12 16 15

Differential Inputs 0 14 (4 with gain amp) 7

Left Justified Option No Yes yes

Conversion Modes Single, Sequence, Repeated Single, Repeated Sequence

Single, Free Running

Single, Continuous, Timer, Triggers

Data Buffer 16 samples 1 sample 1 sample

Add M-Cortex feature

Page 22: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 22

Sampling Basics

• How do we represent an analog signal?– As a time series of discrete values On the MCU: read the ADC data register periodically

)(xf sampled

)(xf

t

ST

V Counts

Page 23: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 23

Sampling Basics

• What do the sample values represent?– Some fraction within the range of values What range to use?

rV

tRange Too Small

rV

tRange Too Big

rV

rV

tIdeal Range

rV

rV

Page 24: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 24

Sampling Basics

• Resolution– Number of discrete values that

represent a range of analog values– ATSAM4L: 12-bit ADC

» 4096 values» Range / 4096 = Step

Larger range less information

• Quantization Error– How far off discrete value is from actual– ½ LSB Range / 8192

Larger range larger error

Page 25: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 25

Sampling Basics

• Converting: ADC counts Voltage

• Converting: Voltage Engineering Units

ADCN

4095

4095

RRADCin

RR

RinADC

VVNV

VV

VVN

t

rV

rV

inV

00355.0

986.0TEMP

986.0)TEMP(00355.0

TEMPC

CTEMP

V

V

Page 26: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 26

Sampling Basics

• Converting values in 16-bit MCUs (easy on 32 bit)

vtemp = adccount/4095 * 1.5;tempc = (vtemp-0.986)/0.00355; tempc = 0

• Fixed point operations– Need to worry about underflow and overflow– Avoid divide and (to a lesser degree) multiply

• Floating point operations– They can be costly on the node, but not ridiculous

• Pay attention to overall all contribution to error

00355.0

986.0TEMP TEMP

C

V

4095TEMP

RRADC

VVNV

command uint16_t TempInt.get() { uint16_t tval = (uint32_t)760*(uint32_t)val/4096 – 468; return tval;}

Page 27: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Time for Lab

3/2/2015IoET - L05 sense 27

Page 28: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 28

Sampling Basics

• What sample rate do we need?– Too little: we can’t reconstruct the signal we care about– Too much: waste computation, energy, resources

» Example: • 2-bytes per sample, 4 kHz 8 kB / second• But the mote only has 10 kB of RAM…

)(xf sampled

)(xf

t

Page 29: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 29

Shannon-Nyquist Sampling Theorem

• If a continuous-time signal contains no frequencies higher than , it can be completely determined by discrete samples taken at a rate:

• Example:– Humans can process audio signals 20 Hz – 20 KHz– Audio CDs: sampled at 44.1 KHz

• Need to ensure there is no appreciable energy above 2x sample.

)(xfmaxf

maxsamples 2 ff

Page 30: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 30

Sampling Basics

• Aliasing– Different frequencies are indistinguishable when they are

sampled.

• Condition the input signal using a low-pass filter– Removes high-frequency components– (a.k.a. anti-aliasing filter)

Page 31: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 31

Sampling Basics

• Dithering– Quantization errors can result

in large-scale patterns that don’t accurately describe the analog signal

– Introduce random (white) noise to randomize the quantization error.

Direct Samples Dithered Samples

Page 32: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 32

Block Diagram (MSP430)

Page 33: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Basic operation

3/2/2015IoET - L05 sense 33

38.6.2

Page 34: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 34

ADCs: Resources or Computation

• OS provides a convenient and safe abstraction of physical resources

• Operating systems deal with devices, not ADCs.• TinyOS has strived to provide uniform, easy-to-

use common abstraction of the ADC.

• Should it?• ADC and how sampling is performed in “on the

datapath” of the application.

Page 35: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 35

TI MSP ADC Core• Input

– Analog signal

• Output– 12-bit digital value of input

relative to voltage references

• Linear conversion

4095

4095

RRADCin

RR

RinADC

VVNV

VV

VVN

RV

RVinV

Page 36: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 36

SAR ADC

• SAR = Successive-Approximation-Register– Binary search to find closest digital value

Page 37: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

How ADCs work

3/2/2015IoET - L05 sense 37

Page 38: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 38

SAR ADC• SAR = Successive-Approximation-Register

– Binary search to find closest digital value

1 Sample Multiple cycles

Page 39: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 39

SAR ADC

1 Sample Multiple cycles

Page 40: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 40

Sample and Conversion Timing

• Timing driven by:– TimerA– TimerB– Manually using ADC12SC bit

• Signal selection using SHSx• Polarity selection using ISSH

Page 41: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 41

Voltage Reference

• Voltage Reference Generator– 1.5V or 2.5V– REFON bit in ADCCTL0– Consumes energy when on– 17ms settling time

• External references allow arbitrary reference voltage

• Want to sample Vcc, what Vref to use?

Internal External

Vref+ 1.5V, 2.5V, Vcc VeRef+

Vref- AVss VeRef-

Page 42: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 42

Sample Timing Considerations

• Port 6 inputs default to high impedance• When sample starts, input is enabled

– But capacitance causes a low-pass filter effect Must wait for the input signal to converge

ns800pF40011.9)kΩ2( Ssample Rt

Page 43: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 43

Software Configuration

• How it looks in code:

ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;

Page 44: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 44

Inputs and Multiplexer

• 12 possible inputs– 8 external pins (Port 6)– 1 Vref+ (external)– 1 Vref- (external)– 1 Thermistor– 1 Voltage supply

• External pins may function as Digital I/O or ADC.

– P6SEL register

• What sort of a MUX is this?

Page 45: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 45

Conversion Memory

• 16 sample buffer

• Each buffer configures sample parameters

– Voltage reference– Input channel– End-of-sequence

• CSTARTADDx indicates where to write next sample

Page 46: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 46

Conversion Modes

• Single-Channel Single-Conversion– Single channel sampled and converted once– Must set ENC (Enable Conversion) bit each

time

• Sequence-of-Channels– Sequence of channels sampled and converted

once– Stops when reaching ADC12MCTLx with EOS

bit

• Repeat-Single-Channel– Single channel sampled and converted

continuously– New sample occurs with each trigger

(ADC12SC, TimerA, TimerB)

• Repeat-Sequence-of-Channels– Sequence of channels sampled and converted

repeatedly– Sequence re-starts when reaching

ADC12MCTLx with EOS bit

Page 47: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 47

Software Configuration

• How it looks in code:

• Configuration

ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 |

INCH_11;

• Reading ADC data

m_reading = ADC12MEM0;

Page 48: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 48

A Software Perspective

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 49: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 49

A Software Perspective

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 50: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 50

A Software Perspective

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 51: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 51

A Software Perspective

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 52: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 52

A Software Perspective

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 53: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

Old backup

3/2/2015IoET - L05 sense 53

Page 54: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 54

MCU

Kernel Driver

Interrupts and Tasks

ADC

Application

command void Read.read() { ADC12CTL0 = SHT0_2 | REF1_5V | REFON | ADC12ON;

ADC12CTL1 = SHP;ADC12MCTL0 = EOS | SREF_1 | INCH_11;call Timer.startOneShot( 17 );

} event void Timer.fired() {

ADC12CTL0 |= ENC;ADC12IE = 1;ADC12CTL0 |= ADC12SC;

} task void signalReadDone() {

signal Read.readDone( SUCCESS, m_reading );} async event void HplSignalAdc12.fired() {

ADC12CTL0 &= ~ENC; ADC12CTL0 = 0;

ADC12IE = 0;ADC12IFG = 0;m_reading = ADC12MEM0;post signalReadDone();

}

Page 55: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 55

Interrupts and Tasks

• Tasks are run-to-completion– Used to signal application events– Break up computation in the application

• Interrupts– Generated by the hardware– Preempt execution of tasks

• Interrupts and tasks can schedule new tasks

Hardware

Interrupt

Task Task Task

Handler

Page 56: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 56

TinyOS Generic Components

• Multiple instances of a component• Type polymorphism• Compile-time configuration• All of the above

Page 57: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 57

TinyOS Parameterized Interface

• Logically related array of interfaces• Improved code by handling all interfaces

collectively• Compile time sizing across module boundaries• Basis fo discovery

Page 58: 3/2/2015IoET - L05 sense1 Wireless Embedded InterNet working Foundations of Ubiquitous Sensor Networks Triggers and Sensing David E. Culler University.

3/2/2015IoET - L05 sense 58

Getting a hold of the event *** fix

Hardware

Phy

Link

Network

Transport

HplSignal

RadioFlash

MCU

Ports ADCTimers

Sof

twar

e

Kernel

Driver Code

Memory MappedIO registers

Hardware Interrupt

Handler dispatch

event void Boot.booted() { atomic { P2IE &= ~PIN7; /* Disable interrupt */ P2IFG &= ~PIN7; /* Clear interrupt flag */ P2DIR &= ~PIN7; /* Configure as input */ P2IES |= PIN7; /* Select Hi->Lo */ P2IE |= PIN7; /* Enable interrupts */ }}

async event void HplSignalPort2.fired() { if ( P2IFG & PIN7 ) { P2IFG &= ~PIN7; post fired(); }

}