Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __MICC_H__
00013 #define __MICC_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 #define MICC_I2C_ADDR 0x02
00043
00044 #define MICC_ACC_ANG 0x42
00045
00046 #define MICC_TURN_RATE 0x44
00047
00048 #define MICC_X_ACCEL 0x46
00049 #define MICC_Y_ACCEL 0x48
00050 #define MICC_Z_ACCEL 0x4A
00051
00052 #define MICC_CMD_RESET 0x60
00053 #define MICC_CMD_RANGE_2G 0x61
00054 #define MICC_CMD_RANGE_4G 0x62
00055 #define MICC_CMD_RANGE_8G 0x63
00056
00057 int MICCreadRelativeHeading(tSensors link);
00058 int MICCreadTurnRate(tSensors link);
00059 bool MICCreadAccel(tSensors link, int &x_accel, int &y_accel, int &z_accel);
00060 bool MICCsendCmd(tSensors link, ubyte command);
00061
00062 #define MICCsetRange2G(x) MICCsendCmd(x, MICC_CMD_RANGE_2G)
00063 #define MICCsetRange4G(x) MICCsendCmd(x, MICC_CMD_RANGE_4G)
00064 #define MICCsetRange8G(x) MICCsendCmd(x, MICC_CMD_RANGE_8G)
00065 #define MICCreset(x) MICCsendCmd(x, MICC_CMD_RESET)
00066
00067 tByteArray MICC_I2CRequest;
00068 tByteArray MICC_I2CReply;
00069
00070
00071
00072
00073
00074
00075
00076 int MICCreadRelativeHeading(tSensors link) {
00077 memset(MICC_I2CRequest, 0, sizeof(tByteArray));
00078
00079 MICC_I2CRequest[0] = 2;
00080 MICC_I2CRequest[1] = MICC_I2C_ADDR;
00081 MICC_I2CRequest[2] = MICC_ACC_ANG;
00082
00083 if (!writeI2C(link, MICC_I2CRequest, MICC_I2CReply, 2))
00084 return 0;
00085
00086
00087 return (MICC_I2CReply[1] << 8) + MICC_I2CReply[0];
00088 }
00089
00090
00091
00092
00093
00094
00095 int MICCreadTurnRate(tSensors link) {
00096 memset(MICC_I2CRequest, 0, sizeof(tByteArray));
00097
00098 MICC_I2CRequest[0] = 2;
00099 MICC_I2CRequest[1] = MICC_I2C_ADDR;
00100 MICC_I2CRequest[2] = MICC_TURN_RATE;
00101
00102 if (!writeI2C(link, MICC_I2CRequest, MICC_I2CReply, 2))
00103 return 0;
00104
00105
00106 return (MICC_I2CReply[1] << 8) + MICC_I2CReply[0];
00107 }
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117 bool MICCreadAccel(tSensors link, int &x_accel, int &y_accel, int &z_accel) {
00118 memset(MICC_I2CRequest, 0, sizeof(tByteArray));
00119
00120 MICC_I2CRequest[0] = 2;
00121 MICC_I2CRequest[1] = MICC_I2C_ADDR;
00122 MICC_I2CRequest[2] = MICC_X_ACCEL;
00123
00124 if (!writeI2C(link, MICC_I2CRequest, MICC_I2CReply, 6))
00125 return false;
00126
00127
00128 x_accel = (MICC_I2CReply[1] << 8) + MICC_I2CReply[0];
00129 y_accel = (MICC_I2CReply[3] << 8) + MICC_I2CReply[2];
00130 z_accel = (MICC_I2CReply[5] << 8) + MICC_I2CReply[4];
00131 return true;
00132 }
00133
00134
00135
00136
00137
00138
00139
00140
00141 bool MICCsendCmd(tSensors link, ubyte command) {
00142 memset(MICC_I2CRequest, 0, sizeof(tByteArray));
00143
00144 MICC_I2CRequest[0] = 2;
00145 MICC_I2CRequest[1] = MICC_I2C_ADDR;
00146 MICC_I2CRequest[2] = command;
00147
00148 return writeI2C(link, MICC_I2CRequest);
00149 }
00150
00151 #endif //__MICC_H__
00152
00153
00154
00155
00156
00157