@@ -221,9 +221,9 @@ static const std::map<std::string, FnCreateI2CSensorDriver> I2cFactorySensor = {
221
221
{" mlx90632d_ext" ,
222
222
[](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
223
223
const char *driver_name) -> drvBase * {
224
- drvMLX90632 *drv = new drvMLX90632 (i2c, addr, mux_channel, driver_name);
225
- drv->ConfigureAndPrintSensorInfo (true );
226
- return drv;
224
+ drvMLX90632 *drv = new drvMLX90632 (i2c, addr, mux_channel, driver_name);
225
+ drv->ConfigureAndPrintSensorInfo (true );
226
+ return drv;
227
227
}},
228
228
{" mpl115a2" ,
229
229
[](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
@@ -389,7 +389,7 @@ static const std::map<std::string, FnCreateI2CSensorDriver> I2cFactorySensor = {
389
389
[](TwoWire *i2c, uint16_t addr, uint32_t mux_channel,
390
390
const char *driver_name) -> drvBase * {
391
391
return new drvVl6180x (i2c, addr, mux_channel, driver_name);
392
- }}}; // /< I2C driver factory
392
+ }}}; // /< I2C driver factory
393
393
394
394
static const std::unordered_map<uint16_t , std::vector<const char *>>
395
395
map_address_to_drivers = {
0 commit comments