Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __HTMAG_H__
00013 #define __HTMAG_H__
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #pragma systemFile
00037
00038 #ifndef __COMMON_H__
00039 #include "common.h"
00040 #endif
00041
00042 int HTMAGreadVal(tSensors link);
00043 int HTMAGreadRaw(tSensors link);
00044 int HTMAGstartCal(tSensors link);
00045 int HTMAGreadCal(tSensors link);
00046 void HTMAGsetCal(tSensors link, int bias);
00047
00048 #ifdef __HTSMUX_SUPPORT__
00049 int HTMAGreadVal(tMUXSensor muxsensor);
00050 int HTMAGreadRaw(tMUXSensor muxsensor);
00051 int HTMAGstartCal(tMUXSensor muxsensor);
00052 int HTMAGreadCal(tMUXSensor muxsensor);
00053 void HTMAGsetCal(tMUXSensor muxsensor, int bias);
00054 #endif
00055
00056 int HTMAG_bias[][] = {{512, 512, 512, 512},
00057 {512, 512, 512, 512},
00058 {512, 512, 512, 512},
00059 {512, 512, 512, 512}};
00060
00061
00062
00063
00064
00065
00066 int HTMAGreadVal(tSensors link) {
00067
00068 if (SensorType[link] != sensorRawValue) {
00069 SetSensorType(link, sensorRawValue);
00070 wait1Msec(100);
00071 }
00072
00073 return (SensorValue[link] - HTMAG_bias[link][0]);
00074 }
00075
00076
00077
00078
00079
00080
00081
00082 #ifdef __HTSMUX_SUPPORT__
00083 int HTMAGreadVal(tMUXSensor muxsensor) {
00084 return HTSMUXreadAnalogue(muxsensor) - HTMAG_bias[SPORT(muxsensor)][MPORT(muxsensor)];
00085 }
00086 #endif // __HTSMUX_SUPPORT__
00087
00088
00089
00090
00091
00092
00093
00094 int HTMAGreadRaw(tSensors link) {
00095
00096 if (SensorType[link] != sensorRawValue) {
00097 SetSensorType(link, sensorRawValue);
00098 wait1Msec(100);
00099 }
00100
00101 return SensorValue[link];
00102 }
00103
00104
00105
00106
00107
00108
00109
00110 #ifdef __HTSMUX_SUPPORT__
00111 int HTMAGreadRaw(tMUXSensor muxsensor) {
00112 return HTSMUXreadAnalogue(muxsensor);
00113 }
00114 #endif // __HTSMUX_SUPPORT__
00115
00116
00117
00118
00119
00120
00121
00122 int HTMAGstartCal(tSensors link) {
00123 int _avgdata = 0;
00124
00125
00126 if (SensorType[link] != sensorRawValue) {
00127 SetSensorType(link, sensorRawValue);
00128 wait1Msec(100);
00129 }
00130
00131
00132 for (int i = 0; i < 5; i++) {
00133 _avgdata += SensorValue[link];
00134 wait1Msec(50);
00135 }
00136
00137
00138 HTMAG_bias[link][0] = (_avgdata / 5);
00139
00140
00141 return HTMAG_bias[link][0];
00142 }
00143
00144
00145
00146
00147
00148
00149
00150 #ifdef __HTSMUX_SUPPORT__
00151 int HTMAGstartCal(tMUXSensor muxsensor) {
00152 int _avgdata = 0;
00153
00154
00155 for (int i = 0; i < 5; i++) {
00156 _avgdata += HTSMUXreadAnalogue(muxsensor);
00157 wait1Msec(50);
00158 }
00159
00160
00161 HTMAG_bias[SPORT(muxsensor)][MPORT(muxsensor)] = (_avgdata / 5);
00162
00163
00164 return HTMAG_bias[SPORT(muxsensor)][MPORT(muxsensor)];
00165 }
00166 #endif // __HTSMUX_SUPPORT__
00167
00168
00169
00170
00171
00172
00173
00174 void HTMAGsetCal(tSensors link, int bias) {
00175 HTMAG_bias[link][0] = bias;
00176 }
00177
00178
00179
00180
00181
00182
00183
00184 #ifdef __HTSMUX_SUPPORT__
00185 void HTMAGsetCal(tMUXSensor muxsensor, int bias) {
00186 HTMAG_bias[SPORT(muxsensor)][MPORT(muxsensor)] = bias;
00187 }
00188 #endif // __HTSMUX_SUPPORT__
00189
00190
00191
00192
00193
00194
00195
00196 int HTMAGreadCal(tSensors link) {
00197 return HTMAG_bias[link][0];
00198 }
00199
00200
00201
00202
00203
00204
00205
00206 #ifdef __HTSMUX_SUPPORT__
00207 int HTMAGreadCal(tMUXSensor muxsensor) {
00208 return HTMAG_bias[SPORT(muxsensor)][MPORT(muxsensor)];
00209 }
00210 #endif // __HTSMUX_SUPPORT__
00211
00212
00213 #endif // __HTMAG_H__
00214
00215
00216
00217
00218
00219