diff --git a/boards/arm/stm32/common/src/stm32_mlx90614.c b/boards/arm/stm32/common/src/stm32_mlx90614.c index c33cfb2deb3..f497eb47533 100644 --- a/boards/arm/stm32/common/src/stm32_mlx90614.c +++ b/boards/arm/stm32/common/src/stm32_mlx90614.c @@ -76,13 +76,13 @@ int board_mlx90614_initialize(int devno, int busno) return -ENODEV; } - /* Then register the light sensor */ + /* Then register the Infrared Thermometer sensor */ snprintf(devpath, 12, "/dev/therm%d", devno); ret = mlx90614_register(devpath, i2c, MLX90614_ADDRESS); if (ret < 0) { - snerr("ERROR: Error registering BM180\n"); + snerr("ERROR: Error registering MLX90614\n"); } return ret;