2016-05-04 56 views
0

我意識到問題已經被問了很多次,但是在閱讀很多很多類似的問題之後,我仍然無法理解和解決這個問題。我是一個新手編碼器,我仍然在學習,並且很多天我都無法解決這個問題。從uint8_t *到uint8_t無效轉換fpermissive C++

我正在使用arduino的演示代碼庫,並試圖在C++ Atmel Studio 7中編譯它(編譯爲基於ATSAMD21製作的自定義板)。這是我的相關代碼(去除所有不相關的部分):

#include <Arduino.h> 
#include <Wire.h> 
#include "Kalman.h" // Source: https://github.com/TKJElectronics/KalmanFilter 
//Beginning of Auto generated function prototypes by Atmel Studio 
uint8_t i2cWrite(uint8_t registerAddress, uint8_t data, bool sendStop); 
uint8_t i2cWrite(uint8_t registerAddress, uint8_t data, uint8_t length, bool sendStop); 
uint8_t i2cRead(uint8_t registerAddress, uint8_t data, uint8_t nbytes); 
//End of Auto generated function prototypes by Atmel Studio 

#define RESTRICT_PITCH // Comment out to restrict roll to ±90deg instead - please read: http://www.freescale.com/files/sensors/doc/app_note/AN3461.pdf 

Kalman kalmanX; // Create the Kalman instances 
Kalman kalmanY; 

/* IMU Data */ 
double accX, accY, accZ; 
double gyroX, gyroY, gyroZ; 
int16_t tempRaw; 

double gyroXangle, gyroYangle; // Angle calculate using the gyro only 
double compAngleX, compAngleY; // Calculated angle using a complementary filter 
double kalAngleX, kalAngleY; // Calculated angle using a Kalman filter 

uint32_t timer; 
uint8_t i2cData[14]; // Buffer for I2C data 

// TODO: Make calibration routine 

#if defined(ARDUINO_SAMD_ZERO) && defined(SERIAL_PORT_USBVIRTUAL) 
    // Required for Serial on Zero based boards 
    #define Serial SERIAL_PORT_USBVIRTUAL 
#endif 

void setup() { 
    Serial.begin(115200); 
    Wire.begin(); 
    //TWBR = ((F_CPU/400000L) - 16)/2; // Set I2C frequency to 400kHz 

    i2cData[0] = 7; // Set the sample rate to 1000Hz - 8kHz/(7+1) = 1000Hz 
    i2cData[1] = 0x00; // Disable FSYNC and set 260 Hz Acc filtering, 256 Hz Gyro filtering, 8 KHz sampling 
    i2cData[2] = 0x00; // Set Gyro Full Scale Range to ±250deg/s 
    i2cData[3] = 0x00; // Set Accelerometer Full Scale Range to ±2g 
    while (i2cWrite(0x19, *i2cData, 4, false)); // Write to all four registers at once 
    while (i2cWrite(0x6B, 0x01, true)); // PLL with X axis gyroscope reference and disable sleep mode 

    while (i2cRead(0x75, *i2cData, 1)); 
    if (i2cData[0] != 0x68) { // Read "WHO_AM_I" register 
    Serial.print(F("Error reading sensor")); 
    while (1); 
    } 

    //delay(100); // Wait for sensor to stabilize 

    /* Set kalman and gyro starting angle */ 
    while (i2cRead(0x3B, *i2cData, 6)); 
    accX = (i2cData[0] << 8) | i2cData[1]; 
    accY = (i2cData[2] << 8) | i2cData[3]; 
    accZ = (i2cData[4] << 8) | i2cData[5]; 

    // Source: http://www.freescale.com/files/sensors/doc/app_note/AN3461.pdf eq. 25 and eq. 26 
    // atan2 outputs the value of -π to π (radians) - see http://en.wikipedia.org/wiki/Atan2 
    // It is then converted from radians to degrees 
#ifdef RESTRICT_PITCH // Eq. 25 and 26 
    double roll = atan2(accY, accZ) * RAD_TO_DEG; 
    double pitch = atan(-accX/sqrt(accY * accY + accZ * accZ)) * RAD_TO_DEG; 
#else // Eq. 28 and 29 
    double roll = atan(accY/sqrt(accX * accX + accZ * accZ)) * RAD_TO_DEG; 
    double pitch = atan2(-accX, accZ) * RAD_TO_DEG; 
#endif 

    kalmanX.setAngle(roll); // Set starting angle 
    kalmanY.setAngle(pitch); 
    gyroXangle = roll; 
    gyroYangle = pitch; 
    compAngleX = roll; 
    compAngleY = pitch; 

    timer = micros(); 
} 

void loop() { 
    /* Update all the values */ 
    while (i2cRead(0x3B, *i2cData, 14)); 
    accX = ((i2cData[0] << 8) | i2cData[1]); 
    accY = ((i2cData[2] << 8) | i2cData[3]); 
    accZ = ((i2cData[4] << 8) | i2cData[5]); 
    tempRaw = (i2cData[6] << 8) | i2cData[7]; 
    gyroX = (i2cData[8] << 8) | i2cData[9]; 
    gyroY = (i2cData[10] << 8) | i2cData[11]; 
    gyroZ = (i2cData[12] << 8) | i2cData[13]; 

    double dt = (double)(micros() - timer)/1000000; // Calculate delta time 
    timer = micros(); 

    // Source: http://www.freescale.com/files/sensors/doc/app_note/AN3461.pdf eq. 25 and eq. 26 
    // atan2 outputs the value of -π to π (radians) - see http://en.wikipedia.org/wiki/Atan2 
    // It is then converted from radians to degrees 
#ifdef RESTRICT_PITCH // Eq. 25 and 26 
    double roll = atan2(accY, accZ) * RAD_TO_DEG; 
    double pitch = atan(-accX/sqrt(accY * accY + accZ * accZ)) * RAD_TO_DEG; 
#else // Eq. 28 and 29 
    double roll = atan(accY/sqrt(accX * accX + accZ * accZ)) * RAD_TO_DEG; 
    double pitch = atan2(-accX, accZ) * RAD_TO_DEG; 
#endif 

    double gyroXrate = gyroX/131.0; // Convert to deg/s 
    double gyroYrate = gyroY/131.0; // Convert to deg/s 

#ifdef RESTRICT_PITCH 
    // This fixes the transition problem when the accelerometer angle jumps between -180 and 180 degrees 
    if ((roll < -90 && kalAngleX > 90) || (roll > 90 && kalAngleX < -90)) { 
    kalmanX.setAngle(roll); 
    compAngleX = roll; 
    kalAngleX = roll; 
    gyroXangle = roll; 
    } else 
    kalAngleX = kalmanX.getAngle(roll, gyroXrate, dt); // Calculate the angle using a Kalman filter 

    if (abs(kalAngleX) > 90) 
    gyroYrate = -gyroYrate; // Invert rate, so it fits the restriced accelerometer reading 
    kalAngleY = kalmanY.getAngle(pitch, gyroYrate, dt); 
#else 
    // This fixes the transition problem when the accelerometer angle jumps between -180 and 180 degrees 
    if ((pitch < -90 && kalAngleY > 90) || (pitch > 90 && kalAngleY < -90)) { 
    kalmanY.setAngle(pitch); 
    compAngleY = pitch; 
    kalAngleY = pitch; 
    gyroYangle = pitch; 
    } else 
    kalAngleY = kalmanY.getAngle(pitch, gyroYrate, dt); // Calculate the angle using a Kalman filter 

    if (abs(kalAngleY) > 90) 
    gyroXrate = -gyroXrate; // Invert rate, so it fits the restriced accelerometer reading 
    kalAngleX = kalmanX.getAngle(roll, gyroXrate, dt); // Calculate the angle using a Kalman filter 
#endif 

    gyroXangle += gyroXrate * dt; // Calculate gyro angle without any filter 
    gyroYangle += gyroYrate * dt; 
    //gyroXangle += kalmanX.getRate() * dt; // Calculate gyro angle using the unbiased rate 
    //gyroYangle += kalmanY.getRate() * dt; 

    compAngleX = 0.93 * (compAngleX + gyroXrate * dt) + 0.07 * roll; // Calculate the angle using a Complimentary filter 
    compAngleY = 0.93 * (compAngleY + gyroYrate * dt) + 0.07 * pitch; 

    // Reset the gyro angle when it has drifted too much 
    if (gyroXangle < -180 || gyroXangle > 180) 
    gyroXangle = kalAngleX; 
    if (gyroYangle < -180 || gyroYangle > 180) 
    gyroYangle = kalAngleY; 

uint32_t time = millis(); 

    /* Print Data */ 
#if 1 // Set to 1 to activate 
    Serial.print(accX); Serial.print("\t"); 
    Serial.print(accY); Serial.print("\t"); 
    Serial.print(accZ); Serial.print("\t"); 

    Serial.print(gyroX); Serial.print("\t"); 
    Serial.print(gyroY); Serial.print("\t"); 
    Serial.print(gyroZ); Serial.print("\t"); 

    Serial.print(time); Serial.print("\t"); 

    Serial.print("\t"); 
#endif 
#if 0 
    Serial.print(roll); Serial.print("\t"); 
    Serial.print(gyroXangle); Serial.print("\t"); 
    Serial.print(compAngleX); Serial.print("\t"); 
    Serial.print(kalAngleX); Serial.print("\t"); 

    Serial.print("\t"); 

    Serial.print(pitch); Serial.print("\t"); 
    Serial.print(gyroYangle); Serial.print("\t"); 
    Serial.print(compAngleY); Serial.print("\t"); 
    Serial.print(kalAngleY); Serial.print("\t"); 
#endif 
#if 1 // Set to 1 to print the temperature 
    Serial.print("\t"); 

    double temperature = (double)tempRaw/340.0 + 36.53; 
    Serial.print(temperature); Serial.print("\t"); 
#endif 

    Serial.print("\r\n"); 
    //delay(2); 
}  

const uint8_t IMUAddress = 0x68; // AD0 is logic low on the PCB 
const uint16_t I2C_TIMEOUT = 1000; // Used to check for errors in I2C communication 

uint8_t i2cWrite(uint8_t registerAddress, uint8_t data, bool sendStop) { 
    return i2cWrite(registerAddress, &data, 1, sendStop); // INVALID CONVERSION ERROR HERE 
} 

uint8_t i2cWrite(uint8_t registerAddress, uint8_t *data, uint8_t length, bool sendStop) { 
    Wire.beginTransmission(IMUAddress); 
    Wire.write(registerAddress); 
    Wire.write(data, length); 
    uint8_t rcode = Wire.endTransmission(sendStop); // Returns 0 on success 
    if (rcode) { 
    Serial.print(F("i2cWrite failed: ")); 
    Serial.println(rcode); 
    } 
    return rcode; // See: http://arduino.cc/en/Reference/WireEndTransmission 
} 

uint8_t i2cRead(uint8_t registerAddress, uint8_t *data, uint8_t nbytes) { 
    uint32_t timeOutTimer; 
    Wire.beginTransmission(IMUAddress); 
    Wire.write(registerAddress); 
    uint8_t rcode = Wire.endTransmission(false); // Don't release the bus 
    if (rcode) { 
    Serial.print(F("i2cRead failed: ")); 
    Serial.println(rcode); 
    return rcode; // See: http://arduino.cc/en/Reference/WireEndTransmission 
    } 
    Wire.requestFrom(IMUAddress, nbytes, (uint8_t)true); // Send a repeated start and then release the bus after reading 
    for (uint8_t i = 0; i < nbytes; i++) { 
    if (Wire.available()) 
     data[i] = Wire.read(); 
    else { 
     timeOutTimer = micros(); 
     while (((micros() - timeOutTimer) < I2C_TIMEOUT) && !Wire.available()); 
     if (Wire.available()) 
     data[i] = Wire.read(); 
     else { 
     Serial.println(F("i2cRead timeout")); 
     return 5; // This error value is not already taken by endTransmission 
     } 
    } 
    } 
    return 0; // Success 
} 

上述代碼在線路195山口54給出錯誤在i2cWrite功能:

從「uint8_t * {又名無符號字符*}無效的轉換'to'uint8_t {aka unsigned char}'-fpermissive

請注意,我修改了上面的代碼,並在第43,46,55,83行添加了* asterisk到i2cWrite/i2cRead數組。如果我不添加那些在所有這些行上的確切錯誤也是如此。由於原始代碼沒有這些*引用,也許我不應該添加這些指針......?

我想了解指針和引用,但掙扎。對於我的生活,我無法理解如何解決這個錯誤。我已經嘗試過各種&和*,但對於我的生活無法理解和糾正這個問題。我似乎無法理解我的代碼如何/在哪裏嘗試將uint8_t *分配給uint8_t。

根據其他主題,我是否需要對這些變量中的任何一個施加或使用volatile或const?我不這麼認爲,但我又是一個初學者。

我非常感謝任何人指引我朝正確的方向或幫助我理解解決方案。在Arduino中,我可以編譯並運行此代碼,但不能在Atmel Studio中運行。任何幫助深表感謝。

編輯:我更新了代碼並刪除了註釋,以便錯誤和行號與我的帖子匹配。對#s行的混淆抱歉。

+0

一個是指針,另一個不是。它們不兼容,不能應用隱式轉換。 –

+0

第195行代碼正好在多行註釋的中間。你能突出哪一行代碼導致錯誤? –

+0

猜猜星星放在哪裏並不是編程的好方法。即使你讓錯誤信息消失,也可能代碼仍然是錯誤的 –

回答

1

您需要在調用它之前聲明該函數。

i2cWrite的定義中,它看不到接收指針的重載聲明作爲參數。因此,編譯器假定你正在遞歸調用函數,其中有一個類型錯誤的參數。

+0

謝謝,但我沒有宣佈i2cWrite和i2cRead函數在第5,6,7行的開頭? Thx尋求幫助。 – RogerPodacter

1

這是一個問題:

uint8_t i2cWrite(uint8_t registerAddress, uint8_t data, bool sendStop) { 
    return i2cWrite(registerAddress, &data, 1, sendStop); // Returns 0 on success 
} 

如圖所示由第一線,i2cWrite接受3個參數:uint8_tuint8_t,和bool。但是你用4個參數來調用它:uint8_t,uint8_t *,int,bool

然後在此之後,您聲明另一個函數i2cWrite需要4個參數。這是不允許的。

這很難說,但我猜你希望這些函數有不同的名稱,三個參數和四個參數。

+0

我將這些功能分開了,但錯誤依然存在。具有3個變量的i2cWrite對於所有實例都成爲i2cWrite1,但錯誤仍然發生。它實際上發生在第44行第35行和第195行53.從uint8_t *到uint8_t無效轉換。 – RogerPodacter

+0

我是個白癡,你是對的。你讓我想到了這些聲明,果然,我在函數聲明中忘記了derefernce *。補充說,代碼編譯沒有錯誤。非常感謝我的朋友!我會選擇作爲答案。 – RogerPodacter

0

感謝這兩個答案。解決方案只是我的功能原型在一開始就略有不同。第二個i2cWrite聲明丟失了derefernce *星號。這固定了它。

相關問題