X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fdrivers%2Fao_mpu9250.c;h=a77abf98dfe7bcfa2d6ce3b8267b1571dd7d642b;hb=52e9443d540aa5d3f29576a0440149b1b0f9c359;hp=0597a81c57fbc8677bc64d93002db7d0d0ca88b5;hpb=6363403d6c08310a16769bf49b8acc45a08bd619;p=fw%2Faltos diff --git a/src/drivers/ao_mpu9250.c b/src/drivers/ao_mpu9250.c index 0597a81c..a77abf98 100644 --- a/src/drivers/ao_mpu9250.c +++ b/src/drivers/ao_mpu9250.c @@ -35,7 +35,7 @@ static uint8_t ao_mpu9250_configured; #if AO_MPU9250_SPI #ifndef AO_MPU9250_SPI_SPEED -#define AO_MPU9250_SPI_SPEED AO_SPI_SPEED_1MHz +#define AO_MPU9250_SPI_SPEED ao_spi_speed(1000000) /* 1MHz max SCLK */ #endif #define ao_mpu9250_spi_get() ao_spi_get(AO_MPU9250_SPI_BUS, AO_MPU9250_SPI_SPEED) @@ -176,7 +176,7 @@ _ao_mpu9250_sample(struct ao_mpu9250_sample *sample) /* byte swap */ while (i--) { uint16_t t = *d; - *d++ = (t >> 8) | (t << 8); + *d++ = (uint16_t) ((uint16_t) (t >> 8) | (uint16_t) (t << 8)); } #endif }