1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

boards/msbiot: fix param for MPU9150

When the driver for the mpu9150 has been renamed to mpu9x50, the
corresponding macro in the MSB-IoT board was forgotten to be renamed
as well. This fixes the issue.
This commit is contained in:
Marian Buschsieweke 2021-04-07 15:18:30 +02:00
parent 04b562780f
commit 9c77cd8d55
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -41,7 +41,7 @@ extern "C" {
* @name Configure connected MPU-9150 device
* @{
*/
#define MPU9150_PARAM_COMP_ADDR (0x0E) /**< I2C address of the MPU9150 */
#define MPU9X50_PARAM_COMP_ADDR (0x0E) /**< I2C address of the MPU9150 */
/** @} */
/**