////////////////////////////////////////////////////////////////////// // function: EagleEye_I2C_reverseData // // Descript: This function reverses the two naighboring byte data, // because MT9T001 I2C transfers the high byte firstly. // Note: i2c_byte_number must be an even number. ////////////////////////////////////////////////////////////////////// void EagleEye_I2C_reverseData( Uint8 *i2c_databuff, Uint16 i2c_byte_number) { Uint8 i,a,b; Uint8 *temp_ptr=i2c_databuff;