builds only for PLATFORM_Freescale

Fork of tsi_sensor by Martin Kojtal

Committer:
dudmuck
Date:
Fri Apr 17 01:53:22 2015 +0000
Revision:
9:525736a96433
Parent:
7:f4bb237d08ca
only builds for PLATFORM_Freescale

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 0:9331e373c138 1 /* Freescale Semiconductor Inc.
Kojto 0:9331e373c138 2 *
Kojto 0:9331e373c138 3 * mbed Microcontroller Library
Kojto 0:9331e373c138 4 * (c) Copyright 2009-2012 ARM Limited.
Kojto 0:9331e373c138 5 *
Kojto 0:9331e373c138 6 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Kojto 0:9331e373c138 7 * and associated documentation files (the "Software"), to deal in the Software without
Kojto 0:9331e373c138 8 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
Kojto 0:9331e373c138 9 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
Kojto 0:9331e373c138 10 * Software is furnished to do so, subject to the following conditions:
Kojto 0:9331e373c138 11 *
Kojto 0:9331e373c138 12 * The above copyright notice and this permission notice shall be included in all copies or
Kojto 0:9331e373c138 13 * substantial portions of the Software.
Kojto 0:9331e373c138 14 *
Kojto 0:9331e373c138 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Kojto 0:9331e373c138 16 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Kojto 0:9331e373c138 17 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Kojto 0:9331e373c138 18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Kojto 0:9331e373c138 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Kojto 0:9331e373c138 20 */
Kojto 0:9331e373c138 21
Kojto 0:9331e373c138 22 #ifndef TSISENSOR_H
Kojto 0:9331e373c138 23 #define TSISENSOR_H
dudmuck 9:525736a96433 24 #ifdef TARGET_Freescale
Kojto 0:9331e373c138 25
Kojto 0:9331e373c138 26 /**
Kojto 0:9331e373c138 27 * TSISensor example
Kojto 0:9331e373c138 28 *
Kojto 0:9331e373c138 29 * @code
Kojto 0:9331e373c138 30 * #include "mbed.h"
Kojto 0:9331e373c138 31 * #include "TSISensor.h"
Kojto 0:9331e373c138 32 *
Kojto 0:9331e373c138 33 * int main(void) {
Kojto 0:9331e373c138 34 * DigitalOut led(LED_GREEN);
Kojto 0:9331e373c138 35 * TSIElectrode elec0(9);
Kojto 0:9331e373c138 36 * TSIElectrode elec1(10);
Kojto 0:9331e373c138 37 * TSIAnalogSlider tsi(elec0, elec1, 40);
Kojto 0:9331e373c138 38 *
Kojto 0:9331e373c138 39 * while (true) {
Kojto 0:9331e373c138 40 * printf("slider percentage: %f%\r\n", tsi.readPercentage());
Kojto 0:9331e373c138 41 * printf("slider distance: %dmm\r\n", tsi.readDistance());
Kojto 0:9331e373c138 42 * wait(1);
Kojto 0:9331e373c138 43 * led = !led;
Kojto 0:9331e373c138 44 * }
Kojto 0:9331e373c138 45 * }
Kojto 0:9331e373c138 46 * @endcode
Kojto 0:9331e373c138 47 */
Kojto 0:9331e373c138 48 #define NO_TOUCH 0
Kojto 0:9331e373c138 49
dudmuck 9:525736a96433 50
Kojto 0:9331e373c138 51 /** TSI Electrode with simple data required for touch detection.
Kojto 0:9331e373c138 52 */
Kojto 0:9331e373c138 53 class TSIElectrode {
Kojto 0:9331e373c138 54 public:
Kojto 0:9331e373c138 55 /** Initialize electrode.
Kojto 0:9331e373c138 56 */
bjo3rn 4:f64097679f27 57 TSIElectrode(PinName pin) : _threshold(100) {
bjo3rn 4:f64097679f27 58 _channel = getTSIChannel(pin);
bjo3rn 4:f64097679f27 59 }
bjo3rn 4:f64097679f27 60
bjo3rn 4:f64097679f27 61 /** Initialize electrode.
bjo3rn 4:f64097679f27 62 */
Kojto 0:9331e373c138 63 TSIElectrode(uint32_t tsi_channel) : _threshold(100) {
Kojto 0:9331e373c138 64 _channel = (uint8_t)tsi_channel;
Kojto 0:9331e373c138 65 }
Kojto 0:9331e373c138 66 /** Set baseline.
Kojto 0:9331e373c138 67 */
Kojto 0:9331e373c138 68 void setBaseline(uint32_t baseline) {
Kojto 0:9331e373c138 69 _baseline = (uint16_t)baseline;
Kojto 0:9331e373c138 70 }
Kojto 0:9331e373c138 71 /** Set threshold.
Kojto 0:9331e373c138 72 */
Kojto 0:9331e373c138 73 void setThreshold(uint32_t threshold) {
Kojto 0:9331e373c138 74 _threshold = (uint16_t)threshold;
Kojto 0:9331e373c138 75 }
Kojto 0:9331e373c138 76 /** Set signal.
Kojto 0:9331e373c138 77 */
Kojto 0:9331e373c138 78 void setSignal(uint32_t signal) {
Kojto 0:9331e373c138 79 _signal = (uint16_t)signal;
Kojto 0:9331e373c138 80 }
Kojto 0:9331e373c138 81 /** Get baseline.
Kojto 0:9331e373c138 82 */
Kojto 0:9331e373c138 83 uint32_t getBaseline() {
Kojto 0:9331e373c138 84 return _baseline;
Kojto 0:9331e373c138 85 }
Kojto 0:9331e373c138 86 /** Get delta.
Kojto 0:9331e373c138 87 */
Kojto 0:9331e373c138 88 uint32_t getDelta() {
Kojto 0:9331e373c138 89 int32_t delta = getSignal() - getBaseline();
Kojto 0:9331e373c138 90 if (delta < 0) {
Kojto 0:9331e373c138 91 return 0;
Kojto 0:9331e373c138 92 } else {
Kojto 0:9331e373c138 93 return delta;
Kojto 0:9331e373c138 94 }
Kojto 0:9331e373c138 95 }
Kojto 0:9331e373c138 96 /** Get signal.
Kojto 0:9331e373c138 97 */
Kojto 0:9331e373c138 98 uint32_t getSignal() {
Kojto 0:9331e373c138 99 return _signal;
Kojto 0:9331e373c138 100 }
Kojto 0:9331e373c138 101 /** Get threshold.
Kojto 0:9331e373c138 102 */
Kojto 0:9331e373c138 103 uint32_t getThreshold() {
Kojto 0:9331e373c138 104 return _threshold;
Kojto 0:9331e373c138 105 }
Kojto 0:9331e373c138 106 /** Get channel.
Kojto 0:9331e373c138 107 */
Kojto 0:9331e373c138 108 uint32_t getChannel() {
Kojto 0:9331e373c138 109 return _channel;
Kojto 0:9331e373c138 110 }
bjo3rn 4:f64097679f27 111 /** Get TSI Channel for PinName.
bjo3rn 4:f64097679f27 112 *
bjo3rn 4:f64097679f27 113 * @returns TSI channel ID for use in constructor of TSIAnalogSlider and TSIElectrode.
bjo3rn 4:f64097679f27 114 * @throws compile-time error if target is not supported, or runtime error if pin does not match any channel.
bjo3rn 4:f64097679f27 115 */
bjo3rn 4:f64097679f27 116 static uint8_t getTSIChannel(PinName pin) {
Kojto 7:f4bb237d08ca 117 #if defined(TARGET_KL25Z) || defined(TARGET_KL46Z) || defined (TARGET_KL05Z)
bjo3rn 4:f64097679f27 118 switch(pin) {
bjo3rn 4:f64097679f27 119 //these are
bjo3rn 4:f64097679f27 120 case PTA0: return 1;
bjo3rn 4:f64097679f27 121 case PTA1: return 2;
bjo3rn 4:f64097679f27 122 case PTA2: return 3;
bjo3rn 4:f64097679f27 123 case PTA3: return 4;
bjo3rn 4:f64097679f27 124 case PTA4: return 5;
bjo3rn 4:f64097679f27 125 case PTB0: return 0;
bjo3rn 4:f64097679f27 126 case PTB1: return 6;
bjo3rn 4:f64097679f27 127 case PTB2: return 7;
bjo3rn 4:f64097679f27 128 case PTB3: return 8;
bjo3rn 4:f64097679f27 129 case PTB16: return 9;
bjo3rn 4:f64097679f27 130 case PTB17: return 10;
bjo3rn 4:f64097679f27 131 case PTB18: return 11;
bjo3rn 4:f64097679f27 132 case PTB19: return 12;
Kojto 7:f4bb237d08ca 133 #if defined(TARGET_KL25Z) || defined(TARGET_KL46Z)
bjo3rn 4:f64097679f27 134 case PTC0: return 13;
bjo3rn 4:f64097679f27 135 case PTC1: return 14;
Kojto 7:f4bb237d08ca 136 #endif
bjo3rn 4:f64097679f27 137 default: error("PinName provided to TSIElectrode::getTSIChannel() does not correspond to any known TSI channel.");
bjo3rn 4:f64097679f27 138 }
bjo3rn 4:f64097679f27 139 # else
bjo3rn 4:f64097679f27 140 #error "Unknown target for TSIElectrode::getTSIChannel() - only supports KL25Z so far."
bjo3rn 4:f64097679f27 141 # endif
bjo3rn 4:f64097679f27 142 return 0xFF; //should never get here
bjo3rn 4:f64097679f27 143 }
bjo3rn 4:f64097679f27 144
Kojto 0:9331e373c138 145 private:
Kojto 0:9331e373c138 146 uint8_t _channel;
Kojto 0:9331e373c138 147 uint16_t _signal;
Kojto 0:9331e373c138 148 uint16_t _baseline;
Kojto 0:9331e373c138 149 uint16_t _threshold;
Kojto 0:9331e373c138 150 };
Kojto 0:9331e373c138 151
Kojto 0:9331e373c138 152 /** Analog slider which consists of two electrodes.
Kojto 0:9331e373c138 153 */
Kojto 0:9331e373c138 154 class TSIAnalogSlider {
Kojto 0:9331e373c138 155 public:
Kojto 0:9331e373c138 156 /**
bjo3rn 4:f64097679f27 157 *
bjo3rn 4:f64097679f27 158 * Initialize the TSI Touch Sensor with the given PinNames
bjo3rn 4:f64097679f27 159 */
bjo3rn 4:f64097679f27 160 TSIAnalogSlider(PinName elec0, PinName elec1, uint32_t range);
bjo3rn 4:f64097679f27 161 /**
Kojto 0:9331e373c138 162 * Initialize the TSI Touch Sensor
Kojto 0:9331e373c138 163 */
Kojto 3:20ffa9b18488 164 TSIAnalogSlider(uint32_t elec0, uint32_t elec1, uint32_t range);
Kojto 0:9331e373c138 165 /**
Kojto 0:9331e373c138 166 * Read Touch Sensor percentage value
Kojto 0:9331e373c138 167 *
Kojto 0:9331e373c138 168 * @returns percentage value between [0 ... 1]
Kojto 0:9331e373c138 169 */
Kojto 0:9331e373c138 170 float readPercentage();
Kojto 0:9331e373c138 171 /**
Kojto 0:9331e373c138 172 * Read Touch Sensor distance
Kojto 0:9331e373c138 173 *
Kojto 0:9331e373c138 174 * @returns distance in mm. The value is between [0 ... _range]
Kojto 0:9331e373c138 175 */
Kojto 0:9331e373c138 176 uint32_t readDistance();
Kojto 0:9331e373c138 177 /** Get current electrode.
Kojto 0:9331e373c138 178 */
Kojto 0:9331e373c138 179 TSIElectrode* getCurrentElectrode() {
Kojto 0:9331e373c138 180 return _current_elec;
Kojto 0:9331e373c138 181 }
Kojto 0:9331e373c138 182 /** Set current electrode which is being measured.
Kojto 0:9331e373c138 183 */
Kojto 0:9331e373c138 184 void setCurrentElectrode(TSIElectrode *elec){
Kojto 0:9331e373c138 185 _current_elec = elec;
Kojto 0:9331e373c138 186 }
Kojto 0:9331e373c138 187 /** Get next electrode.
Kojto 0:9331e373c138 188 */
Kojto 0:9331e373c138 189 TSIElectrode* getNextElectrode(TSIElectrode* electrode) {
Kojto 0:9331e373c138 190 if (electrode->getChannel() == _elec0.getChannel()) {
Kojto 0:9331e373c138 191 return &_elec1;
Kojto 0:9331e373c138 192 } else {
Kojto 0:9331e373c138 193 return &_elec0;
Kojto 0:9331e373c138 194 }
Kojto 0:9331e373c138 195 }
Kojto 0:9331e373c138 196 /** Return absolute distance position.
Kojto 0:9331e373c138 197 */
Kojto 0:9331e373c138 198 uint32_t getAbsoluteDistance() {
Kojto 0:9331e373c138 199 return _absolute_distance_pos;
Kojto 0:9331e373c138 200 }
Kojto 0:9331e373c138 201 /** Return absolute precentage position.
Kojto 0:9331e373c138 202 */
Kojto 0:9331e373c138 203 uint32_t getAbsolutePosition() {
Kojto 0:9331e373c138 204 return _absolute_percentage_pos;
Kojto 0:9331e373c138 205 }
Kojto 0:9331e373c138 206 /** Set value to the scan in progress flag.
Kojto 0:9331e373c138 207 */
Kojto 0:9331e373c138 208 void setScan(uint32_t scan) {
Kojto 0:9331e373c138 209 _scan_in_progress = scan;
Kojto 0:9331e373c138 210 }
Kojto 0:9331e373c138 211 /** Return instance to Analog slider. Used in tsi irq.
Kojto 0:9331e373c138 212 */
Kojto 0:9331e373c138 213 static TSIAnalogSlider *getInstance() {
Kojto 0:9331e373c138 214 return _instance;
Kojto 0:9331e373c138 215 }
Kojto 0:9331e373c138 216 private:
bjo3rn 4:f64097679f27 217 void initObject(void); //shared constructor code
Kojto 0:9331e373c138 218 void sliderRead(void);
Kojto 0:9331e373c138 219 void selfCalibration(void);
Kojto 0:9331e373c138 220 void setSliderPercPosition(uint32_t elec_num, uint32_t position) {
Kojto 0:9331e373c138 221 _percentage_position[elec_num] = position;
Kojto 0:9331e373c138 222 }
Kojto 0:9331e373c138 223 void setSliderDisPosition(uint32_t elec_num, uint32_t position) {
Kojto 0:9331e373c138 224 _distance_position[elec_num] = position;
Kojto 0:9331e373c138 225 }
Kojto 0:9331e373c138 226 void setAbsolutePosition(uint32_t position) {
Kojto 0:9331e373c138 227 _absolute_percentage_pos = position;
Kojto 0:9331e373c138 228 }
Kojto 0:9331e373c138 229 void setAbsoluteDistance(uint32_t distance) {
Kojto 0:9331e373c138 230 _absolute_distance_pos = distance;
Kojto 0:9331e373c138 231 }
Kojto 0:9331e373c138 232 private:
Kojto 3:20ffa9b18488 233 TSIElectrode _elec0;
Kojto 3:20ffa9b18488 234 TSIElectrode _elec1;
Kojto 0:9331e373c138 235 uint8_t _scan_in_progress;
Kojto 0:9331e373c138 236 TSIElectrode* _current_elec;
Kojto 0:9331e373c138 237 uint8_t _percentage_position[2];
Kojto 0:9331e373c138 238 uint8_t _distance_position[2];
Kojto 0:9331e373c138 239 uint32_t _absolute_percentage_pos;
Kojto 0:9331e373c138 240 uint32_t _absolute_distance_pos;
Kojto 0:9331e373c138 241 uint8_t _range;
Kojto 0:9331e373c138 242 protected:
Kojto 0:9331e373c138 243 static TSIAnalogSlider *_instance;
Kojto 0:9331e373c138 244 };
dudmuck 9:525736a96433 245 #endif /* TARGET_Freescale */
Kojto 0:9331e373c138 246 #endif