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